Forum Discussion
Anonymous
7 years agoNot applicable
Question regarding conditional formatting?
Hi I manage to use conditional formatting one of my matrix table. I use a rule that really simple If 1column value (variance) is higher than 0.1 and lower 99999 show its red. I would like ...
- 7 years ago
Hi Anonymous ,
We can set conditional formatting based on a measure like this.
Measure = var va = MAX('Table'[variance]) var ac = MAX('Table'[actuals]) return IF(va >=0.1 && va<=99999 && va <>ac,"#FF0027",BLANK())
RobbeVL
7 years agoImpactful Individual
Hi there,
If you cannot set your rules applying to your needs, you can always use a calculated measure to do so.
I cannot explain it better than on this page :
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting
Have a look at the SWITCH Method.
Robbe