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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

load multiple excel files

 

I have multiple excel files that are the exact same, columns and headings all the same and same order.

 

All files only have one sheet but the sheet name is different.

 

Below is my script I am trying to get to work, it works with a text file but not excel.

 

What am I doing wrong?

 

 

 

LOAD

 

    OrderDate,

 

    OrderNumber,

 

    FacilityName,

 

    FacilityID,

 

    RouteNumber,

 

    ScheduledLeaveTime,

 

    ActualLeaveTime

 

FROM [lib://HealthEX (pharmore_rwinkel)/*.xlsx]

 

(ooxml, embedded labels, table is

  • );
  •  

    1 Solution

    Accepted Solutions
    lironbaram
    Partner - Master III
    Partner - Master III

    assuming the table is on the first sheet in the file

    this will work for you

    FROM [lib://HealthEX (pharmore_rwinkel)/*.xlsx]

    (ooxml, embedded labels);

    View solution in original post

    1 Reply
    lironbaram
    Partner - Master III
    Partner - Master III

    assuming the table is on the first sheet in the file

    this will work for you

    FROM [lib://HealthEX (pharmore_rwinkel)/*.xlsx]

    (ooxml, embedded labels);