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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Replicate the Full Accumulation QV function with Data Analysis

Hello,

I would like to use the result produced by the full accumulation QV functionality as part of another formula (please see attachment for clarification). I have tried to access the monthly cell values with the COLUMN() function but it does not return the accumulated value. Is there anyway to accomplish this using set analysis or Qlikview functions?

Thanks in advance

1 Solution

Accepted Solutions
sunny_talwar

You can do full accumulation using this general formula:

RangeSum(Above(YourExpression, 0, RowNo()))

View solution in original post

3 Replies
settu_periasamy
Master III
Master III

Hi,

May be try this..

=Rangesum(Above(TOTAL sum(YourExpression),0,rowno(TOTAL)))

Accumulation : No Accumulation

sunny_talwar

You can do full accumulation using this general formula:

RangeSum(Above(YourExpression, 0, RowNo()))

Not applicable
Author

Thank you, this is exactly what I was after