Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ..
Can any one help me how to export table data to csv file in Qlikview Script not in dashboard.
Thanks,
Store Table into Table.csv(Txt);
Hi anbu..
Thanks for your reply..
Table means pivot or straight tables not a normal tables of script.
Try this
Data:
LOAD * INLINE [
CountryCode
ES
UK
US,
];
store Data into Data.csv(txt);
Regards
ASHFAQ
Hi Chandini,
After reloading data into QlikView, Create Pivot or Straight Table. Your data will reflect into it.
Check this link
Hi,
Use this macro then
to export to avd
sub MyMacro
set obj = ActiveDocument.GetSheetObject("CH02")
obj.ExportEx "C:\test.qvd", 4
end sub
or to csv
sub ExportExcel
set obj = ActiveDocument.GetSheetObject("CH01")
obj.ExportBiff "C:\test.csv"
end sub
Let me know if that worked.
Regards
ASHFAQ