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
Janet RaffertyJanet Rafferty 

Validation rule to stop one profile from moving opportunities to closed won

VinayVinay (Salesforce Developers) 
Hi Janet,

Try below validation rule.
AND(ISPICKVAL(StageName, "closed won"), $Profile.Name = "System Administrator")

Please mark as Best Answer if above information was helpful.

Thanks,
CharuDuttCharuDutt
Hii Janet
Try Below Validation
AND(ISPICKVAL(StageName, "Closed Won"), $Profile.Name = "Place Profile Name Here On Which You Have To Stop From Making Changes")
Please Mark It As Best Answer If It Helps
Thank You!