Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to load data from QVD in qlik. looking to load all the tables from all the available qvd's in the folder.
Thanks,
You can use a wildcard in your Load FROM clause. For example:
From lib://mydata/folder/*.qvd (qvd);
-Rob
Set vFolder = 'D:\Folder\QVD';
for each File in filelist(vFolder& '\*.qvd')
load * from [$(File)] (qvd);
next File
You can use a wildcard in your Load FROM clause. For example:
From lib://mydata/folder/*.qvd (qvd);
-Rob