I'm looking for a way to create a running total (total of the current row and above) using Excel table structured references.
I know how to do it using the old row/column based way:
=SUM($A$2:$A2)
And I know how to total an entire column using structured references:
=SUM([WTaskUnits])
And I know how to get the current cell using [#ThisRow]
, but I'm not sure how to get the first row of the table to use it in a SUM
.
I created my running total using Excel's Pivot:
My 2 cents, 5 years late (and maybe missing the point).
I realize this is an old thread, but I finally have a solution I would like to offer.
In the instance of the first data row, the offset points to the header, which is not a number, therefore the result is only the
Amount
column.The remaining rows give you the previous
Balance
from theOFFSET
plus the current rowAmount
.