You need to sign in to do that
Don't have an account?
want Validation rule that only record owner or System Administrator can CREATE related record. eg if person_1 creates a record only person_1 should be able to create its related records.
Want Validation rule that only record owner or System Administrator can CREATE related record. eg if person_1 creates a record only person_1 should be able to create its related records.
please, try this one
AND (
NOT(ISNEW()),
OR(
$Profile.Name <>'System Administrator',
$User.Id <> OwnerId ) )
If it helps you. please,kindly mark it as best answer.