Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to automatically load all Excel data using qlik sense desktop

I want to load all the excel tables in a folder, they have the same structure, but the names of the tables are different, how can I achieve them. Thank you.

1 Solution

Accepted Solutions
marinadorcassio1
Partner - Creator
Partner - Creator

Hello,

LISTE:

LOAD

     FileBaseName() as FILES,

     FileName() as "FileName"

FROM YourFolder\*.*;

NoConcatenate

LISTE2:

LOAD

     distinct "FileName"

Resident LISTE;

Drop Table LISTE;

FOR EACH File in FieldValueList('FileName')

$(Include=YourFolder\$(File));

next;

You need to adapt a bit.

Regards,

Marina

View solution in original post

3 Replies
marinadorcassio1
Partner - Creator
Partner - Creator

Hello,

LISTE:

LOAD

     FileBaseName() as FILES,

     FileName() as "FileName"

FROM YourFolder\*.*;

NoConcatenate

LISTE2:

LOAD

     distinct "FileName"

Resident LISTE;

Drop Table LISTE;

FOR EACH File in FieldValueList('FileName')

$(Include=YourFolder\$(File));

next;

You need to adapt a bit.

Regards,

Marina

Anonymous
Not applicable
Author

Thank you very much!

marinadorcassio1
Partner - Creator
Partner - Creator

Please mark as helpful or correct answer if it works