Forum Discussion
MaciejARC
4 years agoFrequent Visitor
column conditional formatting in matrix
hi, I need to set up conditional formatting only for columns C:F (always red font) in a matrix visual. How can I do solve this? Thanks in advance M
- 4 years ago
MaciejARC , use this measure
color =
if( Max(Table[Bucket]) in {"60 Days", "180 Days", "365 days"} , "red", "black")
correct column name and values as per need
MaciejARC
4 years agoFrequent Visitor
Thanks, but how to apply it only to columns C:F?
- amitchandak4 years agoSuper User
MaciejARC , use this measure
color =
if( Max(Table[Bucket]) in {"60 Days", "180 Days", "365 days"} , "red", "black")
correct column name and values as per need