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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
ioannagr
Creator III
Creator III

Store tables as qvds except for two

Hi,  is the correct code

For i=0 to NoOfTables()-1
let d=TableName(i);
IF $(d) <> 'Table1' or $(d) <> 'Table2' then
Store [$(d)] into [$(vPathQVD)/$(d)].qvd;
end if
Next;

 

or 

For i=0 to NoOfTables()-1
let d=TableName(i);
IF $(d) <> 'Table1, Table2' then
Store [$(d)] into [$(vPathQVD)/$(d)].qvd;
end if
Next;

Thanks in advance

0 Replies