
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Use of Above() or accumulation
I'm trying to understand the Above() function.
However I don't get the results I expect.
My main goal is to get a pivot table with a running total per dimension.
I tried many examples from this forum but nothing worked. Even the accumulation option doesn't work.
Feel rather dumb about this.
Could you give some hints ?
Thanks in advance
Accepted Solutions


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this.
=RangeSum(Above(Sum(points),0,RowNo()))

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
See the attached

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I get a continuous running total, without taking into account the change of the dimension.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you very much for this fast answer.
Could you please explain this part : 0,RowNo() ?


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
0 is the offset value. rowno() will increase based on the row till the dimension end.
so, it will work like
0 to 1 - first row,
0 to 2 - till second row,
0 to 3 - till third row
Check the below document give the clarity
