Help: Formula for Date in with condition

I am using a condition to format a ROW.

 

 

ISNOTBLANK(
SELECT(Data Log[UniqueID], [Student ID]=[_THISROW].[Student ID])
)

 

 

The condition is applied to make a row look different:

  • When the UniqueID ( inside Data Log table) exists in reference to the Student ID (in Data table) 
  • AND the record date is today

EmadK_0-1665247376084.png

Screen Shot 2022-10-08 at 6.43.37 PM.png

I have created the first condition, but I am not sure how to add the second to the formula. 

Help please 🙂

 

Solved Solved
0 2 107
1 ACCEPTED SOLUTION

You would need to use the AND() expression to join conditions.  Something like this:

ISNOTBLANK(
    SELECT(Data Log[UniqueID], 
       AND(
           [Student ID]=[_THISROW].[Student ID],
           [Date] = TODAY()
       )
    )
)

 

View solution in original post

2 REPLIES 2

You would need to use the AND() expression to join conditions.  Something like this:

ISNOTBLANK(
    SELECT(Data Log[UniqueID], 
       AND(
           [Student ID]=[_THISROW].[Student ID],
           [Date] = TODAY()
       )
    )
)

 

This worked like a charm! Thank you so much. 🙏

Top Labels in this Space