Forum Discussion

lovishsood1's avatar
lovishsood1
Resolver I
4 years ago
Solved

Highlight Weekends on Matrix Visual

Hey!  I have one Matrix Visual as :  Column Header: Date Table (Calendar) Row Header: Table 1 Values: Table 2(Calculated Column)   I have applied Conditional Formatting on Values (Background co...
  • v-jingzhang's avatar
    4 years ago

    Hi lovishsood1 

     

    Try using this measure for conditional formatting instead. I put your ValuesColor column in it. 

    ColorMeasure =
    IF (
        WEEKDAY ( SELECTEDVALUE ( 'Date'[Date] ), 2 ) >= 6,
        "Green",
        SELECTEDVALUE ( 'Table 2'[ValuesColor] )
    )
    

     

    Best Regards,
    Community Support Team _ Jing
    If this post helps, please Accept it as Solution to help other members find it.