Skip to main content
Filters records based on multiple conditions combined with OR or AND logic. Similar to Simple Filter, but designed for workflows where you need explicit control over how conditions are combined.

Configuration

Each condition specifies:

How It Works

1

Define conditions

Add one or more conditions, each comparing a field against a static value.
2

Set the logic operator

Choose OR to pass records matching any condition, or AND to require all conditions.

Output

Records matching the condition logic pass through. Non-matching records are excluded.

Example

Find contacts who are either in Sales or Marketing:
  • Condition 1: Department equals “Sales”
  • Condition 2: Department equals “Marketing”
  • Logic: OR
Result: contacts in either department flow downstream.

Best Practices

  • Use OR logic when you need to match any of several values for the same field
  • For field-to-field comparisons, use the Field Comparison Condition instead
  • Chain with other filter nodes for complex multi-step filtering
  • Simple Filter - equivalent filtering with the same condition operators
  • Basic Condition - branches into TRUE/FALSE paths instead of excluding records