Forum Discussion
Suryaann
6 years agoFrequent Visitor
Minimum value
Hi All,
I have scenario to compare the each value with the min value in a column and get the percentage.
Value percentage
| 11025 | |
| 12005 | 109% |
| 12652 | 115% |
| 13258 | 120% |
11025 is the min val.The percentage cal = 12005/(11025-1).
Kindly help to get this min value comparison.
Suryaann add following measure
% of Min Value = DIVIDE( MAX( Table[Value] ), CALCULATE( MAX( Table[Value] ), ALL( Table[Value] ) ) )