Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
My goal is to export a full table to .csv file. In addition, I want to add a delimiter which I determine.
I understood the best/easiest way to do so in Qlik Sense is by using STORE command in the script. No need for VBA macros.
Does anybody have suggestions for the exact syntax?
Thanks!
change
Store DimKanban into testcsv.csv(txt);
to
Store * From DimKanban into lib://Yourfolder/testcsv.csv(txt)(txt, delimiter is ',');
Many thanks Harish, it worked!!
If somebody is here >= 2024, both of the below work in qlik sense enterprise in load editor after loading the table:
Store * From yourtable into lib://Yourfolder/yourcsvname.csv(txt, delimiter is ';');
Store * From yourtable into lib://Yourfolder/yourcsvname.csv(txt, delimiter is ',');