not equal condition

Hi guys,

I’m new in App sheet, I just build one apps for order and delivery item and have 2 admin and the contractor side, all user have different view, I just create this condition

USERSETTINGS(USERNAME)<>“xxxxxxx@yahoo.com”. This condition is for user not able to view some form

my question is how I want to add other username in this condition

Thank you in advance

If I understand what you are asling, you want to use the AND() expression:

AND(
   USERSETTINGS(USERNAME)<>"xxxx111@yahoo.com",
   USERSETTINGS(USERNAME)<>"xxxx222@yahoo.com"
)
1 Like

Thank you very much…you save my day…

1 Like