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

excel sheet loading

when i try loading an excel file into qlikview that the header is appering but i want thee fields into table ..

1 Solution

Accepted Solutions
its_anandrjs
Champion III
Champion III

Hi,

Can you explain more please like which header you asking. Or you can try None in the labels.

Regards

Anand

View solution in original post

21 Replies
its_anandrjs
Champion III
Champion III

Hi,

Can you explain more please like which header you asking. Or you can try None in the labels.

Regards

Anand

simenkg
Specialist
Specialist

When using the wizard just input the number of lines here:

Anonymous
Not applicable
Author

i can't get u .....Simen Kind Gulbrandsen

actually i want no    governarate   wilayat as fields...but its taking' please click' that header

anbu1984
Master III
Master III

LOAD no, governarate,wilayat

FROM

[File.xlsx]

(ooxml, explicit labels, header is 1 lines, table is Sheet1);

Anonymous
Not applicable
Author

actually i want no    governarate   wilayat as fields...but its taking' please click' that header

simenkg
Specialist
Specialist

If you set header to be 1 line and use embedded labels, then it will take governarate and wilayat etc. as fields.

its_anandrjs
Champion III
Champion III

Hi,

Try line 1 instead 2 as simen suggest is right

Header.png

LOAD NO.,

     Governate,

     Willayat

......

FROM

TestSample.xlsx

Regards,

Anand

Anonymous
Not applicable
Author

thanq i am having 10 excel files with same fieldnames i want them to convert into 1 qvd how can i.

simenkg
Specialist
Specialist

Load the first with a table name.

TableName:
Load *

from xls

...;

The following excel files preceed them with  Concatenate (TableName).


Concatenate (TableName)

Load *

from xls

..;


Now if all your excel-files has the same format, i.e the same number of header lines, then you can simply read them all using wildcard in your filename.

TableName:
Load *

from Path\*.xls

...;