I am trying to create a workflow that will send one daily notification of all rows that meet one of two criteria. In simplified terms here is the logic I have:
If
Department = A, B or C AND Manager Approval = Approved
OR
Department = D AND Executive Approval = Approved
THEN
include in daily notification email.
The problem I'm running into is that if I put the condition statements in the same path, no notification is being sent (I think it's because it expects both conditions to be met when they are on the same vertical path). If I create a new conditional path for the OR statement, it will then send two separate emails, one for each statement. I want to have one email sent containing records that meet the criteria of one or the other statement.
Is this possible?