Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Exporting tables in CSV or SAS files

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

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

Gaurav

STORE [YourTableName] into [YourFileName.csv] (txt);

Make sure that the path pointed to by YourFileName does exist.

Regards

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

2 Replies
Anonymous
Not applicable
Author

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);

jonathandienst
Partner - Champion III
Partner - Champion III

Gaurav

STORE [YourTableName] into [YourFileName.csv] (txt);

Make sure that the path pointed to by YourFileName does exist.

Regards

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein