Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

count of rows as field on daily basis

Hi ,

How to get no. of rows added on daily basis as field and rangesum count while loading

Ex: source                                                      

A    B     C       Date                                           

14  10    20    4/12/2017

16  25    30    5/12/2017

19  40    50    5/12/2017

20  60    50    6/12/2017

Expected Result

A    B     C       Date           count     RangesumCount                            

14  10    20    4/12/2017          1                1

16  25    30    5/12/2017          2               1+2

19  40    50    5/12/2017          2

20  60    50    6/12/2017          1               1+2+1

thnx

4 Replies
Anil_Babu_Samineni

Or

Count(TOTAL <Date> Date)

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Not applicable
Author

Hi Anil,

I want this to be achieved in Load script

sunny_talwar

May be this

Aggr(RangeSum(Above(Count(Date), 0, RowNo())), Date)

Not applicable
Author

This would work fine on UI but not in load script Sunny