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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
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 ..

21 Replies
its_anandrjs
Champion III
Champion III

Then Load all this way

Tab1:

LOAD NO.,

     Governate,

     Willayat

......

FROM

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

Concatenate(Tab1):

LOAD NO.,

     Governate,

     Willayat

......

FROM

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

..

..

After 10 concatenate you get single table and then

Store Tab1 into TableName.qvd;

Regards

Anand

Anonymous
Not applicable
Author

He:

LOAD * INLINE [

    F1, F2

    1, 2

    22, 44

];

He2:

LOAD * INLINE [

    F1, F2

    45455rgcfdf, 5

    22, 64

];

here once show me how to write....

its_anandrjs
Champion III
Champion III

Hi,

Or by single syntax you can load all the 10 tables

TableName:

LOAD *

(ooxml, explicit labels, header is 1 lines, table is [$(*)]);

Store TableName into TableName.qvd;

Regards

Anand

its_anandrjs
Champion III
Champion III

Try with

He:

LOAD * INLINE [

    F1, F2

    1, 2

    22, 44

];

NoConcatenate

He2:

LOAD * INLINE [

    F1, F2

    45455rgcfdf, 5

    22, 64

];

noconcatenate

New:

Load * Resident He;

DROP Table He;

Load F1,F2 Resident He2;

DROP Table He2;

Regards

Anand

Anonymous
Not applicable
Author

i m having excel sheets of different governerates and how can in single syntax ..

anand can u give me u r mailid i m fed up with so many queries .

Anonymous
Not applicable
Author

thanqq very much i will make use of this resident sytax its fine here we have to write all fields right ......

its_anandrjs
Champion III
Champion III

Hi,

Please close the thread by appropriate answer selected for references. For new question post the new thread.

Regards

Anand

simenkg
Specialist
Specialist

He:

LOAD * INLINE [

    F1, F2

    1, 2

    22, 44

];

Concatenate(He)

LOAD * INLINE [

    F1, F2

    45455rgcfdf, 5

    22, 64

];

Store He into He.qvd (qvd);

drop table He;

Anonymous
Not applicable
Author

i want to show u one pivot table query if u r free.... mail?

its_anandrjs
Champion III
Champion III

Yes right this way all 10 or you better you can load all table at once.

Regards

Anand