Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi
how can i load multiple excel sheets with different sheet names but same columns heading into Qlik sense, any script?
thanks
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 . . .
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