Forum Discussion
Conditional Formatting in Table
- 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 , better to create a color measure. And use that in conditional formatting using "Field value" option
example:
color =
switch ( true(),
FIRSTNONBLANK('Table'[commodity],"NA") ="commodity1" && sum('Table'[Value]) >500,"lightgreen",
FIRSTNONBLANK('Table'[commodity],"NA") ="commodity2" && sum('Table'[Value]) >1000,"lightgreen",
// Add more conditions
"red"
)
https://radacad.com/dax-and-conditional-formatting-better-together-find-the-biggest-and-smallest-numbers-in-the-column
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting#color-by-color-values
- Sean-OReilly5 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-msft5 years agoCommunity Support
Hi Sean-OReilly ,
Please try this:
Expired = SWITCH ( TRUE (), [Days to Ins Expiry] = "Expired", "Red", [Days to Ins Expiry] < 45, "Yellow" )