Skip to main content
All,

 

I need some help with a Workflow Rule Criteria I am trying to create, view below.

 

In opportunities when Stagename = ‘Ready’ and when $User.Alias = ‘pdavis’ changes the Opportunity Owner that contains  contains $User.ProfileId = ’00ei0000001IvXe’ or  $User.Alias = ‘ljacob’ or $User.Alias = ‘lbeatrice’. 

 

How would I write this as a Formula in a Workflow Rule Criteria?

 

All I created was the formula below

 

AND(

 

    TEXT( StageName )= 'Ready',

 

     $User.Alias = 'pdavis')

 

Regards,

 

 
5 answers
  1. Sep 23, 2015, 12:49 AM

    Forrest, give the following a shot:

    AND (

    TEXT(StageName) = 'Ready',

    $User.Alias = 'pdavis',

    ISCHANGED(OwnerId),

    OR (

    Owner.Profile.Id = ' 00ei0000001IvXe',

    Owner.Alias = ‘ljacob',

    Owner.Alias = ‘lbeatrice'

    )

    )

    The above should be the criteria of your workflow rule.

0/9000