Disable Button For Specific User

Hi everyone, what formula can I use to disable a button for a specific user.

User()!= … ?

I am trying to disable a specific user to be able to click Archive/Delete button.

Thanks!

try User.Contains() or User.email.Contains("sample@email.com") on the Disable If properties formula

3 Likes

thanks a lot. is there a way to write it user.email does not contain so disable for everyone except me? thanks

User().Email!=“email@domain” worked. thanks again for all help!

just put .Not() at the end to negate the condition.

2 Likes

Thanks a lot for your help!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.