Hi all - trying to build a condition that looks like the following:
If A = B and C = D, do X
or
If A = E and C = D, do Y
or
else, do nothing
Basically it's finding a field that can have one of two accetable answers (let's say Blue and Green). X would be the 'yes' actions of the condition, and Y would be the 'no' actions. If it's any other color, then ignore the data and move on.
So far, I have the first part working (If A = B and C = D, do X)

but I'm struggling to build in the logic for the extra components. Any guidance would be apprciated!
EDIT: I should clarify, I need the first statement and second statement to be exclusive - if the first A = B statement is valid, then the A = E statement should be skipped. Hope that helps