Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I want to load multiple QVD's at once. I am able to load it in qlikview with the following code:
for each File in filelist(vFolder& '\*.qvd')
load * from [$(File)](qvd);
next File
But, the same code is not loading in qliksense. The "File" varaiable is showing as NULL while debugging. where as it worked well in the case of Qlikview.
Can anyone help me out on this.
Thanks
Kundan
Gotcha!!!
Now, able to load with the following snippet.
SET vFolder = 'lib://FilePath';
for each File in filelist(vFolder& '/*.qvd')
load * from [$(File)] (qvd);
next File
By creating connection path and using the connection name for the qvds to be loaded
Thanks
Kundan