Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
how to get count of rows in load script
Date ID
24/04/2017 11
25/04/2017 10
26/04/2017 12
27/04/2017 37
want to know count of rows if select 26/04/2017 - count should be 3, if 27/04/2017 --- count should be 4
You mean if 27/04/2017 is selected count should be 4.... may be use RowNo() to count
LOAD Date,
ID
RowNo() as Count
Resident ...
Order By Date Asc;
Let var = NoofRows('YourTable');
No Sunny its not working
could you explain again what you need...
I want an extra field in load script where it should tell me the count of rows, if I select 26th Date it should show the count as 3 and if it is 27th count as 4
So what issue did you run into by using RowNo()?
Pls find attached app Sunny, whenever I select dates the count is shown as 1
Try Max(Count1) as your expression
Thnx Sunny, my bad, i haven't posted the my entire question correctly, I want 1 step back accumulation in the script as a new field