I am trying to calculate the running total of a calculated field/measure by creating another calculated field/measure as I need this for further calculations.
using maybe as an illustration
=CALCULATE(
SUM(Transactions[actual]),
All(Transactions),
Transactions[month]<=EARLIER(Transactions[month])
)
will calculate a running total, but then when i try to create another running total of this calculated field it gives me an error.
"Calculation error in measure 'Date'[RunningTotal Of RunningTotal]: The SUM function only accepts a column reference as the argument number 1."
Anyone has any idea on how to do this?