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

Load file monthly in Qlik

Hello,

It may sound basic but I would like to know.

I have an Excel file that I receive every month, and I have to arrange to load it into Qlik Sense every time it arrives.


For exemple:


TABLE:

LOAD

    VILLE,

    STATUS,

    DATEVENTE,

    MONTANT

FROM [lib://Connex_Distribution/Data\test.xlsx]

(ooxml, embedded labels, table is Feuil4);

How should I do it?


Thank you in advance

2 Replies
ramyasaiqv
Creator II
Creator II

You can  use * at the end of the file name and it will automatically load the data. Please make sure the file names should have same naming convention.

TABLE:

LOAD

    VILLE,

    STATUS,

    DATEVENTE,

    MONTANT

FROM [lib://Connex_Distribution/Data\test*.xlsx]

(ooxml, embedded labels, table is Feuil4);

Ramya

intergnek
Partner - Contributor III
Partner - Contributor III
Author

ok thank you!