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

How to save data in xls format fron script editor

Hi,

I need to read a data from qvd file and save them in xls format.

I just type the next code

Custumer:

Load ID,

     Name

From $(vRuta)Custumer.qvd(qvd);

Store * From Customer into $(vDestino)Customers.csv(txt);

In these way it don't work. only save the save qvw file in txt format.

Too i just type...

Store Customer into $(vDestino)Customers.csv;

and didn't work.

Anyone can help me?

Thanks!!!

1 Solution

Accepted Solutions
Not applicable
Author

Sorry peoples !!!

My script code is working correctly.

the issues was that I was looking for in another folder.

My sintax was verty well.

View solution in original post

3 Replies
JonnyPoole
Former Employee
Former Employee

Could it be spelling ?  Your table is Custumer in your script. But the store says Customer.

Use whichever is the right table name:

Store Customer into $(vDestino)Customers.csv (txt);


Store Custumer into $(vDestino)Customers.csv (txt);


ps:  what is $(vDestino) ?   Something like  'C:\Folder\'  I hope...

Not applicable
Author

Sorry peoples !!!

My script code is working correctly.

the issues was that I was looking for in another folder.

My sintax was verty well.

Not applicable
Author

Sorry peoples !!!

My script code is working correctly.

the issues was that I was looking for in another folder.

My sintax was verty well.