In the Teams Power App, I'm using the User Dataverse Table and have added a new column with a datatype of choices to manage multiple roles for each user. Now, I'm trying to filter users by a specific role, and I want the results to display in a dropdown menu. My current formula, which is causing a delegation warning, is as follows:
Filter(Choices([@Tickets].Agent), Not(IsBlank(LookUp(Roles, 'Agent' in Value))))
Is there a way to filter users by a multi-choice column without triggering a delegation warning?