Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Silambarasan1306
Creator III
Creator III

Loading Multiple Excel with multiple sheets without ODBC connection..??

Hi All,

Could Anyone pls help me to load multiple excel with multiple sheets in qlik sense appllication without ODBC driver connection..??

Thanks,

5 Replies
nabhiram
Contributor III
Contributor III

Hi Silambarasan Manickam,

To connect without ODBC driver connection, first you need to create new "Folder" connection in Data load editor.

Create New folder Connection.JPG

After creating the connection you need to select data to load multiple excel with multiple sheets, click on the select data option

Try the code below

set i = 1;

TableTest:

load * inline

[AA,    BB,    CC,    DD,    EE,    FF,    GG,    HH,    II,    JJ];

For i=1 to 3

Concatenate(TableTest)

LOAD

    AA,

    BB,

    CC,

    DD,

    EE,

    FF,

    GG,

    HH,

    II,

    JJ

FROM [lib://multiple excel/*.xlsx]

(ooxml, embedded labels, table is [Sheet$(i)]);

next

Thanks

Abhiram

shraddha_g
Partner - Master III
Partner - Master III

Create a folder connection for Folder containing required excel.

And then browse through the excel and its sheets in qliksense

Step 1:

Create Folder Connection.png

Step 2: Choose excel from list

Step 1.png

Step 3: Choose sheets from the list.

Multiple Sheets.png

I hope it is helpful.

Silambarasan1306
Creator III
Creator III
Author

Hi,

If i create folder, then i need to call all the files multiple load statement will be occur. That's not workout for my case. i have to load multiple sheets too.

thanks,

Anonymous
Not applicable

Hi,

Could you please check below link using single load statement for multiple excel sheets :

Load Multiple excel sheets using For loop

Thanks

Anonymous
Not applicable

Hey Abhiram,
The method which you told will concatenate the tables what if i want to see only sheet 1 data ?
Is it possible to store the data and the visualize it if possible ?