Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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 April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
16 | |
10 | |
8 | |
8 | |
7 |