Forum Discussion
Anonymous
6 years agoNot applicable
Conditional Formatting by Percentage for Low Performers
Hopefully, this is an easy one, I am looking to highlight the bottom 25% of the revenue rank. Ranks are subject to change so I cannot place values as the rule.
Anonymous
6 years agoNot applicable
Any thoughts or workarounds? Or anything else I can provide to help?
v-chuncz-msft
6 years agoCommunity Support
Anonymous
You may use the following measure.
Measure =
IF (
[Rank]
> CONVERT ( COUNTROWS ( ALLSELECTED ( 'Table'[Name] ) ) * 0.75, INTEGER ),
1
)
- Anonymous6 years agoNot applicable
I don't know if I was using this wrong or what but it's a no-go as well. I appreciate the help though. 🙂