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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

dynamic loading files

Hi All,

How to load these files dynamically?

 

EAST_SAL_2016.xls
EAST_COMM_2016.xls
WEST_SAL_2016.xls
WEST_COMM_2016.xls
NORTH_SAL_2016.xls
NORTH_COMM_2016.xls
SOUTH_SAL_2016.xls
SOUTH_COMM_2016.xls

Thanks in advance.

11 Replies
beck_bakytbek
Master
Master

Hi Jack,

check this Video: QlikView - Loading Data From Multiple Files - YouTube

i hope that helps

beck

jagan
Partner - Champion III
Partner - Champion III

Hi,

Load the data with 2 load statements

Salary:

LOAD *,

FileName() as FileName,

FROM

*SAL*.xlsx

   (ooxml, embedded labels, table is [$(*)]);

Commission:

LOAD *,

FileName() as FileName,

FROM

*COMM*.xlsx

   (ooxml, embedded labels, table is [$(*)]);

Hope this helps you.

Regards,

jagan.