Hi all,
Just starting to explore PowerApps for our needs, I'm having a bit of trouble filtering my gallery list to only show results for Current logged in user, I'm using a Sharepoint list btw
sharepointlist columns are as follows
employee_name (person/group)
session_date (date/time)
mentor_name (person/group)
Now I want to filter my gallery list to only show results specific to the current logged in user if he/she matches the records for employee_name or mentor_name
I tried a couple of suggestions in the web like adding this OnStart
Set(varUserEmail, User().Email);
And adding this on the item formula
Filter('sharepointlist', employee_name.Email=varUserEmail)
Thank you in Advance!