Forum Discussion
Percentage Range
- 4 years ago
Hi lherbert501 ,
According to your description, I create a sample.
SalesAverage is a measure.
Now, you can tweak the Gauge measure like this:
Gauge = IF ( INT ( MAX ( 'Table'[Sales] ) ) >= INT ( [SalesAverage] ), "#00A36C", "#D64550" )Get the result.
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyjIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi lherbert501 ,
According to your description, I create a sample.
SalesAverage is a measure.
Now, you can tweak the Gauge measure like this:
Gauge =
IF (
INT ( MAX ( 'Table'[Sales] ) ) >= INT ( [SalesAverage] ),
"#00A36C",
"#D64550"
)
Get the result.
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- lherbert5014 years agoPost Prodigy
Thankyou v-yanjiang-msft and amitchandak 🙂