AND(Account.Id = "001F000001DhLfS",
OR(
NOT( $User.Id = "005F0000003afcY"),
NOT( $User.Id = "0052A000009Bv9x")))
4 answers
Hi Shauna, Please try the below
AND(
AccountId = "001F000001DhLfS",
$User.Id <> "005F0000003afcY",
$User.Id <> "0052A000009Bv9x"
)
As a best practice avoid hardcoding the Id's and use something like Username or User alias as below
AND(
AccountId = "001F000001DhLfS",
$User.Username <> "Insert Username of 1 user",
$User.Username <> "Insert Username of 2 user"
)