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 everyone!
I have a measure that shows me the daily budget level based on a weekly target:
Sales Phasing = DIVIDE([Budget], [# Working Days per Week])
[Budget] is a column based on a year-week granularity.
To get the daily target I divide the budget by the number of working day per week.
Now I would like to accumulate this daily budget by month.
Something like:
Date | Daily Budget | MTD Budget |
01.01.2019 | 50 | 50 |
02.01.2019 | 50 | 100 |
03.01.2019 | 25 | 125 |
How would you do that?
I guess a simple running total will not work based on the result of a DIVID function, right?
This is my MTD measure for the actual sales:
Sales MTD =
CALCULATE (
[Sales],
FILTER (
ALL ( 'Calendar' ),
'Calendar'[Fiscal Year]
= MAX ( 'Calendar'[Year] )
&& 'Calendar'[Date]
<= MAX ( 'Calendar'[Date] )
&& 'Calendar'[Fiscal Month Number]
= MAX ( 'Calendar'[Fiscal Month Number] )
)
)
@joshua1990 , refer if this file can help
https://www.dropbox.com/s/fnq82ksdzk1lqs3/Target_allocation_daily.pbix?dl=0
@amitchandak Thanks for your help!
In your provided file I can't find a running total measure, just da daily target allocation.
Cou you please help?
@joshua1990 , allocate it daily and WTD /MTD as a measure.
You have given output
Can you share sample data and sample output in table format?
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
13 | |
11 | |
9 | |
8 | |
8 |