Forum Discussion
Sean-OReilly
5 years agoHelper IV
Conditional Formatting in Table
Hi How can I change the Background Colour to Red if the Field = "Expired" Also if the Days to Ins Expiry < 45 then i want the background to be yellow See example below:
- 5 years ago
Hi Sean-OReilly ,
Please try this:
Expired = SWITCH ( TRUE (), [Days to Ins Expiry] = "Expired", "Red", [Days to Ins Expiry] < 45, "Yellow" )
Sean-OReilly
5 years agoHelper IV
Hi Amitchandak, thanks for your reply
I see where you are coming from.
I cannot use the below formula though as the "days to ins expiry" field is a measure not a column
Can i do something similar using a measure?
v-xuding-msft
5 years agoCommunity Support
Hi Sean-OReilly ,
Please try this:
Expired =
SWITCH (
TRUE (),
[Days to Ins Expiry] = "Expired", "Red",
[Days to Ins Expiry] < 45, "Yellow"
)