You need to sign in to do that
Don't have an account?
Cheryl Besch
Validation rule based on Opportunity Stage Picklist and User
We want to restrict all but one user from changing the stage of an opportunity to Closed/Won. Here is my formula below. Any suggestions?
AND(
$User.Id="00540000002WHSSAA4",
ISCHANGED(StageName),
ISPICKVAL(StageName,"80 - Closed/Won"))
AND(
$User.Id="00540000002WHSSAA4",
ISCHANGED(StageName),
ISPICKVAL(StageName,"80 - Closed/Won"))
AND(
$User.Id!="00540000002WHSSAA4",
ISCHANGED(StageName),
ISPICKVAL(StageName,"80 - Closed/Won"))
Hope this helps !!
All Answers
Try trigger instead of validation rule.
If this solves your problem, kindly mark it as the best answer.
Hit Like, if it saved your work :-)
Regards,
Magulan
http://www.infallibletechie.com
AND(
$User.Id!="00540000002WHSSAA4",
ISCHANGED(StageName),
ISPICKVAL(StageName,"80 - Closed/Won"))
Hope this helps !!