Skip to main content
Matches when at least one of the conditions you list is satisfied. Use this when any of a few situations should count, for example to accept an order whose status is either “paid” or “shipped”. Each condition you add looks at the same value, and the rule passes as soon as one of them matches. It fails only when every condition fails. If you do not add any conditions, the rule never passes.

Fields

Sample data

This rule combines two checks on an order’s status: it matches when the status equals “paid” or equals “shipped”. Any other status does not match.
FieldValue
First conditionEquals paid
Second conditionEquals shipped
StatusEquals “paid”?Equals “shipped”?Matches?
paidyesnoyes
shippednoyesyes
pendingnonono