Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
gouthamkk
Creator
Creator

Running total/Cumulative in pivot Chart

Test.PNG.pngHI,

I am trying to get cumulative total for net column, My calculation in (In - Out) + Previous Net(Running total) for each group.

I tried using Range sum and above functions, getting only the value of previous row but not as a cumulative/ running total.

If used in a straight table, by selecting Full Accumulation, i could achieve it.  But my scenario is to use a pivot table.

Request for assistance.

1 Solution

Accepted Solutions
jerem1234
Specialist II
Specialist II

If you want running totals for each group, just take total out like:

rangesum(above(In - Out, 0, rowno()))

View solution in original post

5 Replies
jerem1234
Specialist II
Specialist II

Used this formula:

rangesum(above(total In - Out, 0, rowno(total)))

Please find attached.

Hope this helps!

jerem1234
Specialist II
Specialist II

If you want running totals for each group, just take total out like:

rangesum(above(In - Out, 0, rowno()))

gouthamkk
Creator
Creator
Author

Really appreciate it.

sorry to not mention, The running total hast to occur for each group, not for entire table, Is it possible to get the running total group wise?

jerem1234
Specialist II
Specialist II

Should be able to use:


rangesum(above(In - Out, 0, rowno()))


like I mentioned above.


If not, can you give an example of the output you want? What numbers are you expecting for your example?

gouthamkk
Creator
Creator
Author

Thanks Jerem