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
.