Forum Discussion
Cumulative running total
- 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.
Hi DimMich
Use the below instead.
RunningTotal =
CALCULATE(
SUM('Mortality_color'[counting]);
FILTER(
ALL('TableTest');
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.
- DimMich7 years agoRegular Visitor
Hello Mariusz
Thank you for your reply.
The new syntax correct it and now its continious for all dates.
But this create a new problem because i wanted to have the running total reset every year.
I attach a picture how is now with your syntax.
Can you propose me a solution on this?
Thank you in advance
- Mariusz7 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.