Hello,
I am trying to display dropdown values by filtering a SharePoint list that contains a people picker "Assigner" that could have more than 2 people. I am checking if the current user logged in is within the "Assignee" people picker. If it is, then I need to display the title of the record.
For example (IF you are "Bob"):
| Title | Assignee | Manager |
| Project A | Bob, Matt, Joe | Mary |
| Project B | Bob, Joe | Diego |
| Project C | Antonio | Mary |
My dropdown should only display Project A and Project B since "Bob" is assigned as one of the "Assignees".
The tricky part about this is that the "Assignee" column gets returned as a table and when you wrap around the filter it doesn't work as expected.

so far I've tried many methods but these have been the closest to the solution:
Filter(Projects,!IsEmpty(Filter(Assignees.Email,Email= User().Email))).Title
Filter(Projects,LookUp(Assignees, Email = User().Email,Email) = User().Email).Title