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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

hi

i have 3 excel file data1, data2, and data3 in which there are 2 column EmpId and EmpName.

so how can i import data from these 3 file in a single load statement.......

Labels (1)
3 Replies
ashfaq_haseeb
Champion III
Champion III

Hi,

Let say you have 3 files names as

File1.xls

File2.xls

File3.xls

Then try below

load *

From file*.xls;

Regards

ASHFAQ

MayilVahanan
MVP
MVP

Hi

Try like this

Load * from data*.xls;

or

for each i in 'YYY.xlsx', 'XXX.xlsx'

LOAD Student,

     field,

     Note

FROM

$(i)

(ooxml, embedded labels, table is Feuil1);

Next

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

What type of file you have?