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

SettingDescription
ConditionsOne or more filter conditions
LogicalOR (any condition matches — default) or AND (all must match)
Each condition specifies:
SettingDescription
FieldThe field to evaluate
OperatorComparison operator (equals, not equals, greater than, less than, contains, is null, etc.)
ValueThe static value to compare against

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