Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
KundanJyothsna
Contributor II
Contributor II

Load Multiple QVDS

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

Labels (1)
1 Reply
KundanJyothsna
Contributor II
Contributor II
Author

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