Forum Discussion
FawadRehman
Helper I
10 years agoRunning Total - DAX
I need help. I am looking for same solution http://community.powerbi.com/t5/Desktop/DAX-Running-total-by-another-column/m-p/10512#M2189 but somehow its not working for me. RunningTotal...
- 10 years ago
FawadRehman This should work... Let me know.
Running Total COLUMN = CALCULATE ( SUM ( TabelForecast[Forecast] ), ALLEXCEPT ( TabelForecast, TabelForecast[M#] ), TabelForecast[MonthYear] <= EARLIER ( TabelForecast[MonthYear] ) )
Sean
Community Champion
10 years agoFawadRehman This should work... Let me know.
Running Total COLUMN =
CALCULATE (
SUM ( TabelForecast[Forecast] ),
ALLEXCEPT ( TabelForecast, TabelForecast[M#] ),
TabelForecast[MonthYear] <= EARLIER ( TabelForecast[MonthYear] )
)dstramilov
Helper II
10 years agoWho can solve these problems?