function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Adnan PAdnan P 

Certain profile cannot change 'Assigned To'

Can anyone please help with creating a validation rule that prevents a certain Profile Name from being able to change the "Assigned To' field.  All other profile names should be able to change the 'Assigned To' unless Profile = 'C User'

Best Answer chosen by Adnan P
phiberoptikphiberoptik
AND(
    ISCHANGED(OwnerId ), 
    $User.ProfileId = "Enter Profile Id for Profile C User" 
)

 

 

All Answers

phiberoptikphiberoptik
AND(
    ISCHANGED(OwnerId ), 
    $User.ProfileId = "Enter Profile Id for Profile C User" 
)

 

 

This was selected as the best answer
Adnan PAdnan P
I'm sorry I just realized that I never marked your answer as "Best Answer".  Thank you very much for your help.