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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Loading qvds from different folders..

Hi All,

i am looking help for below req:

A single app can get qvds from different folders ,, If yes can anyone hep me asap. Thank you..

6 Replies
priyasawant
Creator II
Creator II

Hi yes you can load different QVDs from different folders...

avinashelite

Yes ....mention the path while fetching that

Table1:

LOAD *

from \\C:Folder ;

Table2:

LOAD *

from \\D:Folder ;

Table3:

LOAD *

from \\E:Folder ;

etc

Not applicable
Author

Thanks for your suggestions.

I want like dynamic using conditions or else any configuration or else using variables ...

maxgro
MVP
MVP

for Each f in 'folder1', 'folder2'

  load * from [$(f)\*.qvd] (qvd);

next

Not applicable
Author

Can you please elaborate clearly...

maxgro
MVP
MVP

The above script loads every qvd from 2 folders

Another option is to create a table with a row for every qvd you want to read (folder name and file name),

loop on that table to to read the qvds