Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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 create a cumulative running total based on date. When i try the quick messure running total solution
Solved! Go to Solution.
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.
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
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.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.