Skip to main content
I am trying to set up a validation rule that restricts any users (besides System Administrator) from updating opportunities to Won.  Here is the formula I am using but I keep getting the Syntax error. Missing ")".  What am I missing?

 

AND(

 

ISCHANGED(StageName)

 

ISPICKVAL(StageName,"D-Won"),

 

($Profile.Name  <> "System Administrator")
8 answers
  1. Dec 3, 2014, 1:55 PM
    Hi Erin,

     

    you can try the below

     

    AND(

     

    ISCHANGED(StageName),

     

    ISPICKVAL(StageName,"D-Won"),

     

    $Profile.Name  <> "System Administrator"

     

    )
0/9000