You need to sign in to do that
Don't have an account?

Workflow Rule - Field Update
Hello everyone,
I am struggling with a field update were I am supposed to update a field “A” (picklist )on the opportunity based on other fields “X” “Y” & “Z” (Checkbox) in the “Account” object.
Scenarios are
So, if X is ticked for the first time it should update a Value as “New” in Field “A” Opportunity object
If X again is ticked along with Y(Y sold for the first time) it should update in the opportunity field A as “New” only as the Y is new though the X is already sold.
My workflow is below written on the opportunity object
OR(
AND(INCLUDES(B,"x"),
Account.x__c=FALSE),
AND(INCLUDES(IT_Lifecycle__c,"y"),
Account.y=FALSE)
Need advice please
Thanks,
Jabeen
I am struggling with a field update were I am supposed to update a field “A” (picklist )on the opportunity based on other fields “X” “Y” & “Z” (Checkbox) in the “Account” object.
Scenarios are
So, if X is ticked for the first time it should update a Value as “New” in Field “A” Opportunity object
If X again is ticked along with Y(Y sold for the first time) it should update in the opportunity field A as “New” only as the Y is new though the X is already sold.
My workflow is below written on the opportunity object
OR(
AND(INCLUDES(B,"x"),
Account.x__c=FALSE),
AND(INCLUDES(IT_Lifecycle__c,"y"),
Account.y=FALSE)
Need advice please
Thanks,
Jabeen
First Workflow -
Standard Criteria: X equals True AND Y equals False AND Z equals False
Action: Field update on A to "New"
Second Workflow -
---- Continue in similar way ---
If you do not want to use multiple Workflows then use Process Builder, Using Process Builder you can build everything in one.
Would like to add one more point that field updates only updates same object's field on which workflow rule is setup so if you need to populate opprtunity field from Account fields it is not possible using single workflow.
Please let me know with more detail so that I can look in to deep.
Thanks
Sandeep Singhal