Hi,
Normally I filter my sp list in browsegallery like so - 'Assigned to'.Email = User().Email
Assigned to is a person field
but what do I do if I want to find a user in a person field that allows selection of multiple people? Is there any limitations to this?
i want to do something like this -
Filter([@testme_1],
('Assigned to'.Email = User().Email Or User().Email in ShowColumns('Delegated to1', "Email") Or User().Email in ShowColumns('Delegated to2', "Email") Or User().Email in ShowColumns('Delegated to3', "Email") Or User().Email in ShowColumns('Delegated to4', "Email") Or User().Email in ShowColumns('Delegated to5', "Email"))
But showcolumns doesnt really work I notice.