Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
ch_riadh
Partner - Creator II
Partner - Creator II

Daily Excel Data

Hi,

I have an app, i'm loading daily data from excel sheet, the user add a new excel sheet every day,
For example : in day 3 i want to be able to see the data related to the three days in my app.

How i can load all the excels ?

Thanks

1 Solution

Accepted Solutions
Anonymous
Not applicable

You can load all at once using wildcard "*" if they are in the exact same format the will auto concatenate into one table:

Assume your files are called

mydata_20161121.xlsx

mydata_20161122.xlsx

mydata_20161123.xlsx

YourTable:

Load *

From mydata_*.xlsx

...;

Use the wildcard to substitute the variable part of the filename.

View solution in original post

3 Replies
adamdavi3s
Master
Master

this might help

Loading from multiple Excel files and multiple sheets

There are so many threads on this subject that I am sure if you search you will find the answer 😉

Anonymous
Not applicable

You can load all at once using wildcard "*" if they are in the exact same format the will auto concatenate into one table:

Assume your files are called

mydata_20161121.xlsx

mydata_20161122.xlsx

mydata_20161123.xlsx

YourTable:

Load *

From mydata_*.xlsx

...;

Use the wildcard to substitute the variable part of the filename.

Not applicable

This is working...!