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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
RobMazaheri
Contributor III
Contributor III

Cumulative issue

RobMazaheri_0-1695206358583.png

 

Hi using this formula to calculate cumulative but its not working - works for a few lines then seems not to work

 

RangeSum(Above(SUM(SUBMITTED_THP),0,3)) 

 

I know its not possible to do a cumulative view in pivot as if there is a zero it cant see past that value 

Labels (1)
1 Solution

Accepted Solutions
MatheusC
Specialist III
Specialist III

Hi, @RobMazaheri 

See with the RowNo() function that returns the number of rows
 
 
RangeSum(
               Above(
                       SUM(SUBMITTED_THP),0,RowNo())) 
Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!

View solution in original post

2 Replies
MatheusC
Specialist III
Specialist III

Hi, @RobMazaheri 

See with the RowNo() function that returns the number of rows
 
 
RangeSum(
               Above(
                       SUM(SUBMITTED_THP),0,RowNo())) 
Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!
RobMazaheri
Contributor III
Contributor III
Author

that's worked a treat thank you so much