Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
quick question.
I have a data set with different "Delta" positions and one total output.
I now want to reference each of the variance categories to the total output. In Excel this would be easy by using the $ sign.
How do I need to change my formular?
Right now it is
Solved! Go to Solution.
@steff131284
Modify the formula to one of these:
Delta MA Quote =
DIVIDE (
[Delta MA in €],
CALCULATE (
[Gesamtleistung Ist],
ALLSELECTED ( Table[Variance])
)
) Delta MA Quote =
DIVIDE (
[Delta MA in €],
CALCULATE (
[Gesamtleistung Ist],
ALLSELECTED ()
)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@steff131284
Modify the formula to one of these:
Delta MA Quote =
DIVIDE (
[Delta MA in €],
CALCULATE (
[Gesamtleistung Ist],
ALLSELECTED ( Table[Variance])
)
) Delta MA Quote =
DIVIDE (
[Delta MA in €],
CALCULATE (
[Gesamtleistung Ist],
ALLSELECTED ()
)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@steff131284 , Not very cleat. It is working. but you do not have value for Gesamtleistung Ist
better version
Delta MA Quote = divide( [Delta MA in €],[Gesamtleistung Ist])
or
Delta MA Quote = divide( [Delta MA in €],[Gesamtleistung Ist],0)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.