Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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