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
Hello everyone!
I need to show the monthly budget and the accumulated budget until today in one matrix:
| Area | Month To Date | Today Target |
| A1 | 5000 | 500 |
| A2 | 750 | 750 |
I have the following measure to determine the weekly budget:
Budget MTD = CALCULATE ( [Budget], FILTER ( ALL ( 'Calendar' ), 'Calendar'[Fiscal Year] = VALUES ( 'Calendar'[Fiscal Year] ) && 'Calendar'[Fiscal Month Number] = VALUES ( 'Calendar'[Fiscal Month Number] ) && 'Calendar'[Date] <= MAX ( 'Calendar'[Date] ) ) )
So, this measures shows me the monthly budget.
Now, I need to calculate the same for the accumulated budget until today.
Basically it should be something like: (Budget MTD / Sum Workingdays) * Workingdays Past
Does someone have any idea?
Hi @joshua1990
If you need to work with budgets on different granularities then this post should help.
https://www.daxpatterns.com/budget-patterns/
Thanks a lot!
How would you edit this measure to get the budget on a daily basis?
[Budget] :=
IF (
[IsBudgetValid],
SUM ( Budget[BudgetAmount] ),
SUMX (
VALUES ( 'Date'[Year] ),
CALCULATE (
COUNTROWS ( 'Date' ),
'Date'[WorkingDay] = TRUE
)
/ CALCULATE (
COUNTROWS ( 'Date' ),
ALLEXCEPT ( 'Date', 'Date'[Year] ),
'Date'[WorkingDay] = TRUE
)
* CALCULATE (
SUM ( Budget[BudgetAmount] ),
FILTER ( ALL ( Budget[Year] ), Budget[Year] = 'Date'[Year] )
)
)
)
Now it's based on a yearly bucket, right?
My Budget table has the following structure:
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 | |
| 17 | |
| 14 | |
| 14 |