Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dears,
I'm trying to load all the excel files from a folder into Qlik Sense.
Weekly wise excel files are add to that folder so i want to load them.
Thanks,
Mukram.
You could use a wild card in your load statement, as in something like :
Load ...... from ....\*.xls* ...............
You could use a wild card in your load statement, as in something like :
Load ...... from ....\*.xls* ...............
Hello Bill Markham,
i tried it already it's loading only one file from the folder.
i'm looking something like for loop method to load all the excel files
Strange, it always works for me. Could you share your load script ?
you could use 'Load * From [path\data*.txt] (ansi, txt, delimiter is '\t', embedded labels);'
Dear Bill Markham,
it's working.
actually the sheet-name in some excel files are sheet1 and in some files it's salesdata and
other than this some of the excel files format is different that why it's not reloading all the files.
LOAD
*
FROM [lib://Excel Files Data (Mukram/*.xlsx]
(ooxml, embedded labels, table is Sheet1);
Working....
Thanks,
Mukram.