Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Help! I am trying to get the % of Goal Achieved, but the result of my calculation is giving me a whacked out %. What is causing this?
Solved! Go to Solution.
What is the measurement you are try to made, it is not clear? Your % are massive because you * 100.
This?
DIVIDE(
'System Users'[Total Est Share],
'System Users'[Target]
,0
)
Or are you looking for the overall % achieved
DIVIDE(
sum( 'System Users'[Total Est Share] ),
sum ('System Users'[Target] )
,0
)
What is the measurement you are try to made, it is not clear? Your % are massive because you * 100.
This?
DIVIDE(
'System Users'[Total Est Share],
'System Users'[Target]
,0
)
Or are you looking for the overall % achieved
DIVIDE(
sum( 'System Users'[Total Est Share] ),
sum ('System Users'[Target] )
,0
)
Thank you, I actually figured it out on Friday. I had to change it from % to whole number.
Hi @dwallerius please try this
% Achieved =
SUMX(
'System Users',
DIVIDE('System Users'[Total Est. Share], 'System Users'[Target], 0) * 100
)
Unfortunately, that didn't work either. Different result, but still wacked.
@dwallerius To calculate the percentage of goal achieved for each row, you can use calculated column instead of a measure
% Achieved = DIVIDE('System Users'[Total Est. Share], 'System Users'[Target], 0) * 100
If you want to use a measure, ensure that the context is correctly set. Here’s a revised measure that should work correctly in a table or matrix visualization:
% Achieved =
VAR TotalEstShare = SUM('System Users'[Total Est. Share])
VAR Target = SUM('System Users'[Target])
RETURN DIVIDE(TotalEstShare, Target, 0) * 100
Proud to be a Super User! |
|
Unfortunately, this gave me the same exact result. It produces 3400% for each person.
Could this be a relationship issue? I did bring over the estimated share and target columns from other tables.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 11 | |
| 9 | |
| 9 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 27 | |
| 22 | |
| 19 | |
| 17 | |
| 11 |