You need to sign in to do that
Don't have an account?
Robert Wynter
WFR if checkbox 1A = False then Checkbox 1B = TRUE and vice versa
I have two fields Email Opt-In And Email Opt Out. I need that if field "Source" = FA then one of these need to be check. If Opt-In ischanged to TRUE then Opt-Out =False and it Opt-In ischanged to FALSE then Opt-Out = TRUE. So far I have the first part working with the following:
- Evaluation CriteriaEvaluate the rule when a record is created, and every time it's edited
- Rule CriteriaAND(
ISCHANGED(Email_Opt_In__c),
Email_Opt_In__c = FALSE,
Source__c = "FormAssembly") - Field Update Email Opt-Out Updated To True
Make sure "Re-evaluate Workflow Rules After Field Change " is checked in the workflow . So that it will re evaluate the workflow rules that is available in the object .
Else go with Process builder.
Thanks
Srinivasan M
Criteria: Every time created or edited.
What it would do? - > If the checkbox Email Opt-In Is checked then it will make checkbox Email Opt-out unchecked.
-> If the checkbox Email Opt-Out Is checked then it will make checkbox Email Opt-IN unchecked.
Hope it helps!