"Partner" is a custom picklist field.
The profile is "Transactional/AE"
I do have "transfer record" permission enabled under this profile.
I created the following VR, but when I test it, my end user can transfer any account record - not just the specific one listed with "Advisors Excel" as the partner:
ISCHANGED (OwnerId)
&& TEXT(Partner__c) = "Advisors Excel"
&& ($Profile.Name = "Transactional/AE")
6 answers
Ok, Monday morning coffee kicked in and realized that I needed to switch the operators for the partner field and the profile name.
The following VR works:
AND(
ISCHANGED (OwnerId) ,
TEXT(Partner__c) <> "Advisors Excel" ,
$Profile.Name = "Transactional/AE"
)