I have an initial check statement, with an update record, and then another check statement, update record. The second check statement/update record is dependent upon the first check statement, but the workflow disregards the second check statement and processes the second update record. I have tried calling the second check statement/update record in a child workflow, but I have the same results. Do you have any suggestions?
The logic looks like this:
If 1st statement is true
* update contact record and then
* if 2nd statement is true then
update account record
If the 2nd statement is not true, the workflow should not update the account record. Like I said, I have made the "if 2nd statement is true then update account record" a child workflow, but the parent workflow still updates the account record whether or not the 2nd statement is true.