Forum Discussion
Anonymous
6 years agoNot applicable
Cumulative Total for a Summarize Table
Hello Experts, Need help in getting running/Cumulative total. I have a summarized table and for that i need one more column that helps in getting cumulative total please help SUMMARIZE (...
az38
Community Champion
6 years agoHi Anonymous
try smth like
Measure =
var _curDate = MAX(Table[Date])
RETURN
CALCULATE(
SUM(Table[Results]),
FILTER(ALL(Table), Table[Date] <= _curDate )
)