Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have an excel file with 1000 rows, but I want to load only 120 rows. How to do it?
Thanks,
Sandip
Hi,
Use this:
First 120
LOAD
*
FROM....
LOAD
....
FROM ...
Where recno() <=100;
Hi,
LOAD Date,
Year,
Month,
Sales
FROM
(ooxml, embedded labels, table is Sheet1)
where RecNo()<=100;
first 120 LOAD
*
FROM
[..\..\Downloads\Data Accuracy.xlsx]
(ooxml, no labels, header is 120 lines, table is Sheet1);
Hi Sandip,
if this is just for testing purposes, you can also execute the reload from with the debugger and use 'Limited Load' and set the number of records to whatever you want.
Andy
Hi,
you can use
First 120 before your LOAD statement
First 120
Load
*
FROM .......