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 moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello,
I am still fairly new to PBI. I am creating visuals for Budget Variances. I am given the Actuals and the Budget in the data set. I created a measure to do so:
Hi @Anonymous
You didn't say what you would display instead of 0.
IF you need a flexible solution, maybe something like this would work.
OL6 Variance =
VAR _Actual = SUM( 'Run Export Action'[Actual (USD)] )
VAR _Budget = SUM( 'Run Export Action'[OL6 Budget (USD)] )
VAR _Variance =
DIVIDE(
_Actual - _Budget,
_Budget,
0
)
VAR _Logic =
IF(
NOT ISBLANK( _Actual ),
IF(
NOT ISBLANK( _Budget ),
_Variance,
"No Budget"
),
"No Actual"
)
RETURN
_Logic
Hi this helps. However, moreso if the budget is 0 and there is an amount in the actuals how would I get the outcome to show 100% instead of 0%?
Hi @Anonymous
In the above measure, change "No Budget" to 1.
Check out the April 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 |
|---|---|
| 36 | |
| 33 | |
| 26 | |
| 24 | |
| 17 |
| User | Count |
|---|---|
| 67 | |
| 49 | |
| 32 | |
| 27 | |
| 22 |