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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
1 Solution

Accepted Solutions
Colin-Albert
Partner - Champion
Partner - Champion

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
Partner - Champion
Partner - Champion

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
Partner - Champion III
Partner - Champion III

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