Only System Admin should be allowed to update the Stage field of Opportunity #inSalesforce

Validation Rule - Only System Admin should be allowed to update the Stage field of Opportunity


AND( 

$Profile.Name <> 'System Administrator',  

ISCHANGED(StageName), 

OR(

ISPICKVAL(StageName,"Closed Won"),      

ISPICKVAL(StageName,"Closed Lost")

)

)


Visual: https://www.youtube.com/watch?v=nKaZUkJEl1s

Comments