Hello, I am building an app and I need a control in it that is only visible to users that have been labeled a supervisor in Sharepoint. The Sharepoint list has the following columns.
| Employee Name | Employee ID | Employee Email | Last4DigitsOnCard | Supervisor | SupervisorEmail | IsSupervisor |
| John Doe | 1234 | johndoe@gmail.com | 1234 | Jane Doe | janedoe@gmail.com | Yes |
I am trying to do a lookup to return the users record in the list and then check if the user has a "Yes" value under the "IsSupervisor" Column below is my code
If(!IsBlank(LookUp(ReferencenceList,User().FullName=Proper(Title),IsSupervisor="Yes")), true , false )
Let Me Know if you have any suggestions and Thanks!