Forum Discussion
kroman
3 years agoHelper II
Getting sorted data in bunches
Hi All We have a dataset with 100K rows in the following format: And we have a flow that is getting data from this dataset Due to the fact that flow cannot get all 100k rows in one go we are...
- 3 years ago
You could use the WINDOW function, that allows you to order by whichever column you want and you can provide the offsets you need.
johnt75
3 years agoSuper User
You could use the WINDOW function, that allows you to order by whichever column you want and you can provide the offsets you need.
- kroman3 years agoHelper II
Thanks for your reply
I am trying it with WINDOW with following query on a 100 rows table
EVALUATE
VAR Window1 = WINDOW(1, REL, 5 , REL, Data100Rows, MATCHBY([Index]))
RETURN Window1But it returns all 100 rows instead of 5 rows
- kroman3 years agoHelper II
Finaly works with
WINDOW(0, REL, 10 , ABS