Skip to main content
I'm pretty rusty at these simple formulas.  How can I add an additional profile ID to this validation code.  (I may need to just be more caffienated)

 

IF(ISCHANGED(StageName),FALSE,

 

IF(TEXT(StageName) == 'Closed Won',

 

IF( $User.ProfileId == '00e1a000000l6qp', FALSE, TRUE), FALSE))

 

Thank you!

 

 
10 个回答
  1. 2018年1月17日 16:31
    If that's correct, try using this...

     

     

    AND(

    TEXT(StageName) = "Closed Won",

    ISCHANGED(CloseDate),

    $Profile.Name <> 'SteveMo Favorite Boy Band',

    $Profile.Name <> 'SteveMo Second Favorite Boy Band'

    )

     

     
0/9000