Forum Discussion

ShawnPrice's avatar
ShawnPrice
Helper I
6 years ago
Solved

Conditional formatting for time

I"m looking for a way to do a conditional format on the table below. I have users who log in each day of the week. If they log in after 8:05:00 AM I want that day to highlighted in a Red.   Step 2 If...
  • Anonymous's avatar
    Anonymous
    6 years ago

    ShawnPrice 
    Try follow the steps:

    1. In query editor, select the two columns and then unpivot: 

     

    2. Close apply, create a flag measure

     

    flag = IF(SUM('Table'[Value])>TIMEVALUE("8:05:00"),1,0)

     

     

    3. Create a conditional format for Value column, rule by the flag measure

    Paul Zheng _ Community Support Team
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.