Hi,
Thanks for responding. copying and pasting your code returns an error, but...
If I do this:
Set(
currentRole,
LookUp(
UserEdit,
'Editor Email' = currentUser
).Role
and change the text box to currentRole.Value, I get a blank response.
If I do this:
Set(
currentRole,
LookUp(
UserEdit,
'Editor Email' = currentUser
).Role.Value
and change the text box to currentRole, it gives a blank result.
Ultimately, I would like to set the users role when they open the app so that I can use it to dictate what they see without having to check their role multiple times. I feel like this would create multiple connections to the sharepoint list than what is needed.