Hello,
I am trying to set a button to be only visible for certain admin users. On start up of the app I set varUser:
Set(varUser,User());
In the button is where I have the visible setting with:
varUser.Email = "user1@email.com" Or "user2@email.com" Or "user3@email.com"
This function recognizes the first email and allows the button to be visible to the first admin listed, but user2 and user3 admins are not able to view the button. Please help, I've tried using:
|| instead of Or
but this does not work.