Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Friends,
In the script editor i have created a table having some calculated variable, is it possible to export whole table from Qlikview
on any drive of my desktop?
Regards,
Gaurav
Gaurav
STORE [YourTableName] into [YourFileName.csv] (txt);
Make sure that the path pointed to by YourFileName does exist.
Regards
Jonathan
Use the same syntax that Qlikview creates when you read in a csv or any other format for that purpose.
Something like below.
STORE tablename into D:/MyFile.csv (txt, codepage is 1252, embedded labels, delimiter is ',', msq);
Gaurav
STORE [YourTableName] into [YourFileName.csv] (txt);
Make sure that the path pointed to by YourFileName does exist.
Regards
Jonathan