Dear all
I have a dataverse for teams table called Registered Users and another called Eligible Users.
I would like to check if some of the Registered Users are in the Eligible Users table and I'm checking against the 'Azure AD Object ID' as the unique identifier.
// in 'Eligible Users' I have a column called cr466_User2 that has previously been saved from the 'Registered Users' table to the 'Eligible Users' table
ClearCollect(
colCheck,
Filter(
'Registered Users',
'Azure AD Object ID' in 'Eligible Users'.cr466_User2.'Azure AD Object ID'
)
)
My colCheck collection stays empty and I'm wondering why? The 'Eligible Users' table includes Azure AD Object ID's from 'Registered Users'. See here:

I would appreciate your help. Thanks and happy easter!