Forum Discussion
Conditional formatting with different values
- 3 years ago
WJ876400 , Create a measure like
Switch(True(),
max(Table[Level]) = " UG" && sum(Table[Mark]) <=39 , "Red" ,
max(Table[Level]) = " UG" && sum(Table[Mark]) > 39 , "Green" ,
max(Table[Level]) = " PG" && sum(Table[Mark]) <=49 , "Red" ,
max(Table[Level]) = " PG" && sum(Table[Mark]) > 49 , "Green" )
Use this in conditional formatting using the field value option
How to do conditional formatting by measure and apply it on pie?
https://www.youtube.com/watch?v=RqBb5eBf_I4&list=PLPaNVDMhUXGYo50Ajmr4SgSV9HIQLxc8L
https://community.powerbi.com/t5/Community-Blog/Power-BI-Conditional-formatting-the-Pie-Visual/ba-p/1682539
https://amitchandak.medium.com/power-bi-where-is-the-conditional-formatting-option-in-new-format-pane-66e0afcb15f3
WJ876400 , Create a measure like
Switch(True(),
max(Table[Level]) = " UG" && sum(Table[Mark]) <=39 , "Red" ,
max(Table[Level]) = " UG" && sum(Table[Mark]) > 39 , "Green" ,
max(Table[Level]) = " PG" && sum(Table[Mark]) <=49 , "Red" ,
max(Table[Level]) = " PG" && sum(Table[Mark]) > 49 , "Green" )
Use this in conditional formatting using the field value option
How to do conditional formatting by measure and apply it on pie?
https://www.youtube.com/watch?v=RqBb5eBf_I4&list=PLPaNVDMhUXGYo50Ajmr4SgSV9HIQLxc8L
https://community.powerbi.com/t5/Community-Blog/Power-BI-Conditional-formatting-the-Pie-Visual/ba-p/1682539
https://amitchandak.medium.com/power-bi-where-is-the-conditional-formatting-option-in-new-format-pane-66e0afcb15f3
thank you for the quick response, I am using a clustered column chart and the colour fornmatting is going on the Y-axis
I then went to the column colour and added the conditional formatting like below but it hasnt changed the colour of the bars