Hi all,
Here's an issue I've been stuck on for a few days now.
I am trying to filter a gallery by the current user where the current user's name is contained in a person/group column in a list. There can be more than one name in this column entry though so I cannot use =. I have tried using the "in" function but that gets a delegation warning. Here's a better glimpse at what I'm trying to do:
List:
Course name Mentors
CourseA UserA
CourseB UserA UserB
In the powerapp:
(for userA)
"Courses I can mentor"
Gallery:
CourseA
CourseB
I've tried lookup and filter functions and here's the closest I've gotten
Filter('Course Catalogue', currentUser in "Mentors") which returns a delegation warning since the data types dont match.
Tried currentuser.email .fullname .text, with no result.
I already have my OnStart: Set(currentUser, User().Email) if that is your first question.
Any help would be appreciated, thanks