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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Load multiple sheets from Excel Files

hi

how can i load multiple excel sheets with different sheet names but same columns heading into Qlik sense, any script?

thanks

2 Replies
GaryGiles
Specialist
Specialist

If you know the sheet names and you want the data in one table, you could use:

Tablename:

LOAD
Column1,
Column2,
Column3
FROM [lib://Your Connection Name/Sample.xlsx]
(ooxml, embedded labels, table is Sheet1);

LOAD
Column1,
Column2,
Column3
FROM [lib://Your Connection Name/Sample.xlsx]
(ooxml, embedded labels, table is Sheet2);

and so on  . . .

 

MayilVahanan

Hi @Anonymous 

Please refer below link, hope it helps

https://community.qlik.com/t5/New-to-Qlik-Sense/Multiple-sheets-from-excel-in-Qliksense/td-p/95602

 

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.