Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I am trying to calculate the running total of a set of measures by months in my matrix. The running total is working by itself, however when used with my monthly slicer it breaks. I want it to calculate up to the month selected in the slicer, but instead it filters for that specific month.
example: when I select May I want to see running total froo every month from Jan to May but it shows me data only in the month of May.
Running Total = CALCULATE
( SUM ( Table[column] ),
FILTER ( ALLSELECTED( Table ),
Table[columnDate] <= MAX ( Table[ColumnDate] ) ) )
The Month Slicer comes from Table[ColumnDate].Month
Hi,
Here's my approach:
Total = SUM(Table[Column])
Total YTD = CALCULATE([Total],DATESYTD(Calendar[Date],"31/12"))
Hope this helps.
Perhaps:
Running Total = CALCULATE
( SUM ( Table[column] ),
FILTER ( ALLEXCEPT( Table[ColumnDate ),
Table[columnDate] <= MAX ( Table[ColumnDate] ) ) )
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |