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

Combining multiple different -identical in format excels into one

 I have multiple Excel files to analyze in qlik sense, however, I want to have a full dataset. My csvs are sales records for the different months, with the same format. How can i work on these since i dont have a field to relate these on.

Labels (1)
3 Replies
qv_testing
Specialist II
Specialist II

Use this if you have the same structure of files in a folder. (give * instead of filename so it will load all files in the folder)

LOAD FieldName1,
          FieldName2,
          ....so on
FROM
[C:\FolderPath\*.xlsx]
(ooxml, embedded labels, table is Sheet1);

Chanty4u
MVP
MVP

Use this sample

 

SalesData:

LOAD *

FROM [Folder Path\*.xlsx]

(ooxml, embedded labels, table is Sheet1);

 

 

Concatenate(SalesData)

LOAD *

FROM [Folder Path\*.xlsx]

(ooxml, embedded labels, table is Sheet1);

 

 

Anil_Babu_Samineni

@DGAL1 Your subject says "multiple different -identical in format excels" ,So we appreciate if you can explain how the layout in columns from excel file?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful