Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Load Table use 2nd row as columns, ignore 1st row

Hi,

i want to load a table. I don´t need the 1st row, because in the 2nd row are the columnames.

How can i load the table, that the 1st row will be ignored?

regards,

sam

1 Solution

Accepted Solutions
tomasz_tru
Specialist
Specialist

If you're loading from a file try use:

LOAD *

FROM [lib://File.xlsx]

(ooxml, embedded labels, header is 1 lines, table is XXX);

View solution in original post

3 Replies
Anonymous
Not applicable
Author

Try something like :

YourTable:

LOAD * FROM [YourFile]

WHERE RecNo() > 1;

tomasz_tru
Specialist
Specialist

If you're loading from a file try use:

LOAD *

FROM [lib://File.xlsx]

(ooxml, embedded labels, header is 1 lines, table is XXX);

Anonymous
Not applicable
Author

Perfect, thanks a lot! @bill.markham, too 🙂

regards,

sam