This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
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 -
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 25 | |
| 24 | |
| 22 | |
| 21 | |
| 19 |
| User | Count |
|---|---|
| 52 | |
| 48 | |
| 47 | |
| 22 | |
| 21 |