Forum Discussion
DimMich
7 years agoRegular Visitor
Cumulative running total
Hello i have a column named "counting" at a table named "TableTest" that register a number at a certain date of the year and some negative registrations. The matrix is like this: i want to...
- 7 years ago
Hi DimMich
Please try the below.RunningTotal = CALCULATE( SUM('Mortality_color'[counting]); FILTER( ALLEXCEPT('TableTest'; TableTest[YearColumn]); TableTest'[Date] <= MAX('TableTest'[Date]) ) )
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Mariusz
7 years agoCommunity Champion
Hi DimMich
Please try the below.
RunningTotal =
CALCULATE(
SUM('Mortality_color'[counting]);
FILTER(
ALLEXCEPT('TableTest'; TableTest[YearColumn]);
TableTest'[Date] <= MAX('TableTest'[Date])
)
)
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.