Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
daisy1438
Contributor III
Contributor III

how to load multiple excel sheets in single file in qliksense

Hi,

  I have the requirement of loading multiple excel file with multiple sheets..

 

I have Excel files in folder

 

In file1 excel file I have three sheets  sheetA, sheetB, sheetC

 

In file 2 excel file I have three sheets  sheetD, sheetE, sheetF

 

In file 3 excel file I have three sheets  sheetG, sheetH, sheetI

 

I have this three excel file in one folder...

 

I want to load all Excel file at a time and store into a QVD..

 

I want to do it in Qliksense...can any one give me solution for my requirement..

3 Replies
Prashant_Naik
Partner - Creator II
Partner - Creator II

Taoufiq_Zarra

if the files have the same datafield

Data:

LOAD 
     *
FROM
[.\Folder\file1.xlsx]
(ooxml, no labels, table is sheetA);

LOAD 
     *
FROM
[.\Folder\file1 .xlsx]
(ooxml, no labels, table is sheetB);


LOAD 
     *
FROM
[.\Folder\file1 .xlsx]
(ooxml, no labels, table is sheetC);




LOAD 
     *
FROM
[.\Folder\file2.xlsx]
(ooxml, no labels, table is sheetD);

LOAD 
     *
FROM
[.\Folder\file2 .xlsx]
(ooxml, no labels, table is sheetE);


LOAD 
     *
FROM
[.\Folder\file2 .xlsx]
(ooxml, no labels, table is sheetF);


LOAD 
     *
FROM
[.\Folder\file3.xlsx]
(ooxml, no labels, table is sheetG);

LOAD 
     *
FROM
[.\Folder\file3 .xlsx]
(ooxml, no labels, table is sheetH);


LOAD 
     *
FROM
[.\Folder\file3 .xlsx]
(ooxml, no labels, table is sheetI);

STORE Data into .\QVD\DATA.qvd (qvd);
Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉