Fields
Sample data
This rule combines two checks on an order’sstatus: it matches when the status equals “paid” or equals “shipped”. Any other status does not match.
| Field | Value |
|---|---|
| First condition | Equals paid |
| Second condition | Equals shipped |
| Status | Equals “paid”? | Equals “shipped”? | Matches? |
|---|---|---|---|
paid | yes | no | yes |
shipped | no | yes | yes |
pending | no | no | no |