Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
i'm trying to load only file names from the folder but not the data in it.
When i try the below code, it is fetching data too..which is a performance issue.
Can someone please help?
Any help is highly appreciated!
SET vFolder = '\\files'; //Storing the folder path in a variable.
Files:
LOAD
FileName() as Test
FROM $(vFolder)\*.qvd (qvd);
see the attachment:
see the attachment:
Trythis?
LET vFolder = '\\files\' ;
Sample:
LOAD FileBaseName() AS TestName
FROM $(vFolder)*.qvd(qvd);
This loads all data in the files too Vish.
This is awesome
Thanks a lot!!
Any idea how to do this in Qlik Sense?