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: 
vinod22kv
Creator
Creator

Need to load the excel by leaving first 20 Rows.

Hi,

I have to load the excel By leaving First 20 Rows, How can i do that....

and the sample excel is attached bellow.

1 Solution

Accepted Solutions
jaumecf23
Creator III
Creator III

Hi,

Try this:

LOAD no,

     name,

     [f name],

     [last name],

     [ph no],

     add,

     state,

     countery,

     pin,

     company

FROM

[New Microsoft Excel Worksheet.xlsx]

(ooxml, embedded labels, header is 20 lines, table is Sheet1);

View solution in original post

2 Replies
jaumecf23
Creator III
Creator III

Hi,

Try this:

LOAD no,

     name,

     [f name],

     [last name],

     [ph no],

     add,

     state,

     countery,

     pin,

     company

FROM

[New Microsoft Excel Worksheet.xlsx]

(ooxml, embedded labels, header is 20 lines, table is Sheet1);

shiveshsingh
Master
Master

May be this

T:

LOAD A, B, C, D, E, F,

     G, H, I, J, RowNo() as Row

FROM

[New Microsoft Excel Worksheet.xlsx]

(ooxml, no labels, table is Sheet1);

F:

load A, B, C, D, E, F,

     G, H, I, J

Resident T

where Row>20;

drop table T;