I have a powerapp that is connected to a Sharepoint list. One of the fields is a name entry that is autopopulated with the User information for the current user but it accepts multiple entries, i.e. you can add colleagues' names.
I want to filter a Gallery, so that a user sees all the entries he is tagged in. Filtering by the person that created an item works, but how do I filter on another name field
If [any of the] names in [field] = current.user(name)
what I can do is to filter on the "created by" field by using:
SortByColumns(Filter(Datatable,User().Email = 'Created By'.Email),"Created")
so how do I need to replace the expression 'created By'.Email to look through all the people in my other field and see if any of the emails matches?