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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I would like to get the running total for the selected fiscal month on a daily level.
This is the measure I have built so far:
Running Total =
VAR RunningTotal =
CALCULATE (
[Sales],
FILTER (
ALL ( 'Fiscal Calendar' ),
'Fiscal Calendar'[Fiscal Year] = VALUES ( 'Fiscal Calendar'[Fiscal Year] )
&& 'Fiscal Calendar'[Fiscal Month Num] = VALUES ( 'Fiscal Calendar'[Fiscal Month Num] )
&& 'Fiscal Calendar'[Date] <= TODAY()
)
)
RETURN
RunningTotal
Unfortunately, this measures shows me in a matrix with dates as rows the running total for every day.
| Date | Sales | Running Total |
| 02.08.2021 | 150000 | 150000 |
| 03.08.2021 | 0 | 150000 |
| 04.08.2021 | 0 | 150000 |
Why is that so? I have a filter on "TODAY". What have I missed?
Try using ALLSELECTED instead of ALL.
Nope, that makes no changes
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 9 | |
| 9 | |
| 8 | |
| 6 | |
| 6 |
| User | Count |
|---|---|
| 20 | |
| 20 | |
| 20 | |
| 14 | |
| 14 |