Forum Discussion
AtchayaP
4 years agoHelper V
Powerbi
i am trying show as 57.39% though I have changed in format panel.but I get 5739.any idea?
- Anonymous4 years ago
Hi AtchayaP
Ok, you have a *100 extra in the calculation.
Using the below measure
%val = DIVIDE(SELECTEDVALUE('Table'[skills]),CALCULATE(sum('Table'[skills]),ALLSELECTED('Table'[Name])))I get the below chart.Hope, it resolves your issue.
3 Replies
- AnonymousNot applicable
Hi AtchayaP
You are missing "/100" in your calculation. putting that will resolve the above issue.
Regards,
Pranit
- AtchayaPHelper V
I have used it.
ā
ā
- AnonymousNot applicable
Hi AtchayaP
Ok, you have a *100 extra in the calculation.
Using the below measure
%val = DIVIDE(SELECTEDVALUE('Table'[skills]),CALCULATE(sum('Table'[skills]),ALLSELECTED('Table'[Name])))I get the below chart.Hope, it resolves your issue.