Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
cocobello3
Contributor II
Contributor II

Load automatically new column from Excel

Hi,

Every week I get the sales per country in Excel under a new column. I ve connected the excel sheet to my Qlik Sense database. Is it possible to load automatically the new column in the script ?

cocobello3_0-1593525128434.png

Thank you very much for the help !

 

 

Labels (1)
1 Solution

Accepted Solutions
Nicole-Smith

Instead of listing the fields in your load, you can use * to load all of the columns.

So instead of this:
LOAD Country, [08.juin], [15.juin], [22.juin]
FROM YourFile.xlsx;

It would look like this:
LOAD *
FROM YourFile.xlsx;

View solution in original post

1 Reply
Nicole-Smith

Instead of listing the fields in your load, you can use * to load all of the columns.

So instead of this:
LOAD Country, [08.juin], [15.juin], [22.juin]
FROM YourFile.xlsx;

It would look like this:
LOAD *
FROM YourFile.xlsx;