Skip to main content
All,

 

I have a Formula(checkbox) field User_Group__c in Opportunities. When I create a workflow, can I use the User_Group__c within the Rule Critieria section of my workflow? 
7 answers
  1. Feb 4, 2015, 1:46 AM
    Remove the last comand after User_Group__c = TRUE

     

    So it can be ..

     

    AND(

     

      ISCHANGED(OwnerId),

     

       OR(Owner.Profile.Name = "Account Manager",

     

          Owner.Alias = "fmuld",

     

           User_Group__c = TRUE) 

     

    )

     

     

     

    Or

     

    AND(

     

      ISCHANGED(OwnerId),

     

       OR(Owner.Profile.Name = "Account Manager",

     

          Owner.Alias = "fmuld",

     

           User_Group__c ) 

     

    )
0/9000