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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to store many tables into qvds at a time

how to store many tables into qvds at a time

12 Replies
AraSaber
Contributor
Contributor

Hi @MarcoWedel ,

Your code works perfectly! Unfortunately it doesn`t takes tabelsname that included a space for instance (Student Year).

Could you help me with?

Thanks in Advance!

MarcoWedel

Hi @AraSaber ,

just use square brackets around the table name variable like this:

 

FOR i = 0 to NoOfTables()-1
	LET vTabNam = TableName($(i));
	STORE [$(vTabNam)] into [$(vTabNam).qvd] (qvd);
NEXT i

 

hope this helps

regards

Marco

AraSaber
Contributor
Contributor

Hi @MarcoWedel ,

It works you are genius! 😀