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

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to do

Hello ,

I need to have a list of files loaded to my application

Is there any way to get it ?

e.g.

I loaded file name "xxx" and "zzz"
The list :
"xxx"

"zzz"

Thanks in Advance

Labels (1)
3 Replies
Gabriel
Partner - Specialist III
Partner - Specialist III

Hi,

If this list of files to load is static then I will just turn the list into a table and use either FOR Each LOOP or FOR LOOP to pick up each value in the table to load.


maxgro
MVP
MVP

FOR Each file in 'xxx', 'zzz'

     LOAD * FROM $(file).qvd (qvd);

NEXT;

MarcoWedel
MVP
MVP

load filebasename() as file, *

from *.txt (...)


hope this helps

regards

marco