Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
In my excel some records are there.
but i dont want to load first 1000 records.
How to solve this issue?
Regards
Anil
Hi Anil,
By RecNo() <= 1000 you get only records from 1 to 1000 did you check the result of this expression it should be RecNo() > 1000.
Just for curiosity
Regards
Anand
Hi,
Try like this
for first 1000
First 1000
LOAD *
FROM
[yourexcel.xls];
for Greater then 1000
LOAD *
FROM
[yourexcel.xls] where rowno()>1000;
Regards
ASHFAQ
Load * From ExcelFile Where RecNo() <= 1000;
Hi,
Then try this way for rows greater than 1000 rows.
Load * From
ExcelSource Where RecNo() > 1000;
Or
Load * From
ExcelSource Where RowNo() > 1000;
Regards
Anand
Hi Anil,
By RecNo() <= 1000 you get only records from 1 to 1000 did you check the result of this expression it should be RecNo() > 1000.
Just for curiosity
Regards
Anand