Forum Discussion
Dax
- 4 years ago
Hi AtchayaP
Thanks for reaching out to us.
You can try this measure
% = DIVIDE(MIN('Table'[Value]),SUMX(ALL('Table'),'Table'[Value]))in this measure, MIN('Table'[Value]) will return the value of current row, SUMX(ALL('Table'),'Table'[Value]) will return the total= 1806+341+236.
so for row 1, %= divide(1806, (1806+341+236)) = 0.76, then you can format it as percentage by clicking on % button.
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi AtchayaP
Thanks for reaching out to us.
You can try this measure
% = DIVIDE(MIN('Table'[Value]),SUMX(ALL('Table'),'Table'[Value]))
in this measure, MIN('Table'[Value]) will return the value of current row, SUMX(ALL('Table'),'Table'[Value]) will return the total= 1806+341+236.
so for row 1, %= divide(1806, (1806+341+236)) = 0.76, then you can format it as percentage by clicking on % button.
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
but how to take percentage of both