Forum Discussion
How to do conditional formatting RAG for time values?
alexw94 , You can create a measure and use that in conditional formatting using field value option
Switch(Max(Table[Race]) ,
"Race" , Switch( True() ,
[New Avg Time] < time(0,0,20) , "Green",
[New Avg Time]< time(0,0,40) , "Amber", "Red" ),
"Swim" , Switch( True() ,
[New Avg Time] < time(0,1,0) , "Green",
[New Avg Time]< time(0,1,20) , "Amber", "Red" ),
Switch( True() ,
[New Avg Time] < time(0,0,55) , "Green",
[New Avg Time]< time(0,1,30) , "Amber", "Red" ) )
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
amitchandak - thanks, I am not wanting to apply it to a pie chart, I am wanting the RAG colours to appear in the matrix table in my screenshot. After creating that measure, how do I implement that measure into the conditional formating for the time values I have created?