This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi Team,
I have below table in backend
| ProjId | Emp | Monthly Actual Hours | Monthly Budget Hours | Variance ( act - Bud ) | var % |
1 | Sen Mnager | 100 | 120 | -20 | -16 % |
1 | Developer | 150 | 80 | 70 | 87.5 % |
In table visual I wanted ,
| ProjId | Monthly Act Hours | Budget Hours | var | var % |
| 1 | 250 | 200 | 50 | 50/200 -> 25 % |
var % calculation is not coming right in table visual. Could you please help me with this ?
Thanks,
Shubham
Solved! Go to Solution.
Hi @Anonymous
Instead of using columns and summarize values, please create 3 measures:
SumOfBudgetHours = Sum('Table'[Monthly Budget Hours ])
SumOfVariance = Sum('Table'[Variance ( act - Bud ) ])
Var %_M = DIVIDE([SumOfVariance], [SumOfBudgetHours],0)And please add the last one instead of the var %.
_______________
If I helped, please accept the solution and give kudos! 😀
@Anonymous , Create measure like
Monthly Actual = sum(Table[Monthly Actual Hours])
Monthly Budget = sum(Table[Monthly Budget Hours])
var = [Monthly Actual] -[Monthly Budget]
var %= divide([Monthly Actual] -[Monthly Budget],[Monthly Budget])
Hi @Anonymous
Instead of using columns and summarize values, please create 3 measures:
SumOfBudgetHours = Sum('Table'[Monthly Budget Hours ])
SumOfVariance = Sum('Table'[Variance ( act - Bud ) ])
Var %_M = DIVIDE([SumOfVariance], [SumOfBudgetHours],0)And please add the last one instead of the var %.
_______________
If I helped, please accept the solution and give kudos! 😀
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 |
|---|---|
| 29 | |
| 26 | |
| 25 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 59 | |
| 50 | |
| 26 | |
| 20 | |
| 19 |