Assume once the account record is created other users can edit the record except for system administrator and record owner.
Validation Rule
AND(
NOT(ISNEW()),
NOT(OR($Profile.Name == 'System Administrator', $User.Id == OwnerId))
)
above validation rule throws an error if any other user tries to edit the record.
Validation Rule
AND(
NOT(ISNEW()),
NOT(OR($Profile.Name == 'System Administrator', $User.Id == OwnerId))
)
above validation rule throws an error if any other user tries to edit the record.
Error: Field OwnerId does not exist. Check spelling.
ReplyDelete