Compare Two Table Using Select Statement

Scenario:

I have Table A [USERS] with a list of all possible User ID, and Table B [Attendance] with User Id that are already In Table B. I want to find the User ID in Table A that are not yet used in Table B.

 

ISNOTBLANK(SELECT(
Users[User ID],
Not(IN([User ID], Attendance[User ID]))
)
)

Above Select statement fetch all A Table Records not Skip Table B Records.

I don't know where i am doing wrong please help

Solved Solved
0 5 135
1 ACCEPTED SOLUTION

Thank you for your reply, its resolve 

NOT(IN([User ID],SELECT(Attendance[User ID],[DateChk]=TODAY())))

View solution in original post

5 REPLIES 5
Top Labels in this Space