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

extraction of files dynamically

interview question:

i need to extract files(Table structure is same) dynamically

if i have 5 excel files in January

and 4 files in February

every month i will get multiples files ,then what is the script that we should write to implement this?

Labels (4)
1 Reply
micheledenardi
Specialist II
Specialist II

Are the files in the same location? Which are the files names?

 

Generally speacking you can replace the file name with a * asterisk to load all xlsx in a specific location.

LOAD *
FROM [lib://BaseFolder/3.DEV/_Temp/]*.xlsx
(ooxml, embedded labels, table is Sheet1);
Michele De Nardi
If a post helps to resolve your issue, please accept it as a Solution.