Dear community
I have a dataverse for teams table called Registered Users. It has a column called Azure AD Object ID.
Based on another table called Not Valid, I created a collection colNotValid. It has a lookup to the Registered Users table.
In my gallery, I would like to show all items in Registered Users WITHOUT the ones that are in the colNotValid collection (column 'cr466_User2').
Filter(
'Registered Users',
Not(
'Azure AD Object ID' in colNotValid.cr466_User2.'Azure AD Object ID'
)
)
// tried the following alternative, but didn't work either (Registered Users is the unique identifier of 'Registered Users'
Filter(
'Registered Users',
Not(
'Registered Users' in colNotValid.cr466_User2.'Registered Users'
)
)
Above code doesn't do that and I don't know why. It simply shows ALL users from Registered Users. If I remove the Not() it won't show any users. What am I doing wrong?
Thanks in advance for your help.
**edit**
This feature is activated but the behavior is the same with collections directly.
