Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Is there any Dax already built in to calculate the reminder of the year budget? For example, I want to be able to say what is my year to date Revenue in one column and then show the remainder revenue target for the year and calculate a ratio or %age for it. That way, I will be able to show what percentage or value is still left to be generated (or spent in the case of expenditure).
Solved! Go to Solution.
You could take a running total dax logic and use it a numerator and your yearly budget as a denominator
*** you will need a date/calendar table for this to work.
*** use this measure with date / month / quarter as your row headers
Budget Remainder % =
VAR Numerator =
CALCULATE (
[Sales Amount],
FILTER ( ALL ( 'Date' ), 'Date'[Date] <= MAX ( 'Date'[Date] ) )
)
VAR Denominator = SUM ( Budget[Budget] )
RETURN
1-DIVIDE ( Numerator, Denominator, 0 ) // this should give you a remainder ratio
N -
You could take a running total dax logic and use it a numerator and your yearly budget as a denominator
*** you will need a date/calendar table for this to work.
*** use this measure with date / month / quarter as your row headers
Budget Remainder % =
VAR Numerator =
CALCULATE (
[Sales Amount],
FILTER ( ALL ( 'Date' ), 'Date'[Date] <= MAX ( 'Date'[Date] ) )
)
VAR Denominator = SUM ( Budget[Budget] )
RETURN
1-DIVIDE ( Numerator, Denominator, 0 ) // this should give you a remainder ratio
N -
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 19 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 37 | |
| 31 | |
| 27 |