Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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! 😀