Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Save $600 on Qlik Connect registration! Sign up by Dec. 6 to get an extra $100 off with code CYBERSAVE: REGISTER
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

importing data same content, different language

Hello there,

I am currently working on 5 excel sheet that i need to update regularly...for the moment, i am saving all of them in one big file...is there a way to directly download all the them with a specific Scripting line instead of compiling them ?

LOAD Nom,
Prénom,
[Adresse e-mail],
Status,
Langue,
[Champ libre 1],
[Champ libre 2],
Pays,
Date(Floor([Date de création])) as Date,

Time(Frac([Date de création])) as Time

FROM

(
ooxml, embedded labels);

thanks for your help

1 Solution

Accepted Solutions
Colin-Albert

Have you tried using a wildcard in the filename?

The column labels will need to be the same, or you will need to use the column numbers.

FROM

(
ooxml, embedded labels);

View solution in original post

4 Replies
Colin-Albert

Have you tried using a wildcard in the filename?

The column labels will need to be the same, or you will need to use the column numbers.

FROM

(
ooxml, embedded labels);

Gysbert_Wassenaar

Perhaps with a wildcard load: Qlik_onec_*.xlsx

LOAD Nom,
Prénom,
[Adresse e-mail],
Status,
Langue,
[Champ libre 1],
[Champ libre 2],
Pays,
Date(Floor([Date de création])) as Date,
Time(Frac([Date de création])) as Time
FROM

(
ooxml, embedded labels);


talk is cheap, supply exceeds demand
zhadrakas
Specialist II
Specialist II

Hello Jean-Phillipe,

yes you can use * in your FROM Statement

hope this helps

Not applicable
Author

i did not think about it thanks great idea