Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have flat file and i want pick a first 1000 rows in my flat to Qlikview
any one help how we do this
you can use Where clause in your load script.
Where RowNo()<=999
Hi,
Try this:
Tbl1:
LOAD *
FROM
[abc.xlsx]
(ooxml, embedded labels, table is Sheet1)
Where RecNo()<=1000
;
Use the First keyword:
FIRST 1000
Load .... from .... ;
first 1000
Load
......
.....
First 1000
Load
....
From...