Skip to main content
Reverses the result of the check you give it. In its most common use you add a single condition and this turns its answer around: where that condition would match, “Not” does not, and where it would not match, “Not” does. Use it to express the opposite of a check you already have, for example to accept every order whose status is not “cancelled”. When you add more than one condition, they are first combined as an “And” (so on their own they would match only together) and “Not” then reverses that combined answer. In practice the rule matches when the conditions do not all match, and fails only when every one of them matches. For a clear, predictable result, add a single condition.

Fields

Sample data

This rule reverses a single check on an order’s status: it matches every order whose status is not “cancelled”.
FieldValue
ConditionEquals cancelled
StatusEquals “cancelled”?Matches?
paidnoyes
cancelledyesno