You need to sign in to do that
Don't have an account?
2 Workflow Rules, Same Logic, Inconsistently Firing
I have a set of workflow rules with the exact same logic and some of them fire and some of them don't. They just use the following logic to check if there is a value in a few fields then trigger a workflow that moves the record to the next department.
All the logic follows the below format, some of them work, some of them don't. Doesn't appear to be any consistency to it whatsoever.
AND(NOT(isblank(text(Breakdown_Draft__c))), NOT(isblank(text(Spare_Parts_Requested__c))),
Return_to_Previous_Dept__c = FALSE)
All the logic follows the below format, some of them work, some of them don't. Doesn't appear to be any consistency to it whatsoever.
AND(NOT(isblank(text(Breakdown_Draft__c))), NOT(isblank(text(Spare_Parts_Requested__c))),
Return_to_Previous_Dept__c = FALSE)
All Answers
If workflow criteria is same then you should write single WF with multiple actions rather writing different WF rules. Also you can leverage Reevaluate WF rule checkbox to retrigger all WF rule again based on your requirement.
Thnaks
Arpit