Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

saving data on drive in script

Hi All

as we import data from drives in to qvw like

load * from table

can we export data from qvw in the script on to excel saved on shared drives

can you please share syntax

thanks

1 Solution

Accepted Solutions
Not applicable
Author

tab:

load *

from tablename;

store tab into D:\test.qvd;

store tab into D:\test1.xlsx;

View solution in original post

4 Replies
Not applicable
Author

Hi ,

You can store the file in CSV format\

Store tablename into filename.csv (txt) ;

Not applicable
Author

so that means i can't save in existing xls file via script?

Not applicable
Author

tab:

load *

from tablename;

store tab into D:\test.qvd;

store tab into D:\test1.xlsx;

Not applicable
Author

Hi,

Yes,you can save in existing xls file via script.

use the syntax:

Store tablename into filename.xls;

Regards,

Snehal Nabar