i have 2 SharePoint lists:-
1) Task list .. with these fields:-
- ID
- Title
2) PeopleWork list.. with these fields:-
- ID
- TaskID
- Single selection people/group field named People
So now i tried to create a demo gallery which should only show the Tasks where the user is assigned to. so on the Screen OnVisible i build this collection to get the PeopleWork items which have the login user email:-
ClearCollect(relatedtasks,Filter(PeopleWork,People.Email=User().Email))
then on the Items property of the gallery i define this formula:-

but i also got a delegation warning..is there a way to fix this?
Thanks