Forum Discussion
Conditional Formatting Threshold Based on Slicer Selection
- 2 years ago
mclawler , Create a measure based on requirement and use that in field value based conditional formatting
If (calculate(isfiltered(Table[person]), allselected()), if([Measure] < 75, "red", "green") , if([Measure] < 500, "red", "green") )
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
mclawler , Create a measure based on requirement and use that in field value based conditional formatting
If (calculate(isfiltered(Table[person]), allselected()), if([Measure] < 75, "red", "green") , if([Measure] < 500, "red", "green") )
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
This worked beautifully!! Thank you