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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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