Hi & Thanks in advance. I am trying to check a value in an enumlist for a security filter, it works when the enumlist has one value the check works, but when enumlist has multiple values it doesnt work here is the expression:
Dept has a single value, Assigned Depts can have multiple values.
IN([Dept], SELECT(User List[Assigned Depts], [Email] = USEREMAIL())) where Dept is a single value and Assigned Depts has multiple values.
Alternatively I have also tried using a count but that doesnt work either
COUNT(SELECT(User List[Assigned Depts], AND([Email] = USEREMAIL(),IN([Dept],[Assigned Depts])),TRUE)) >0
what am I missing here?