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
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 )
)