> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bondata.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Or Filter

> Combine multiple filter conditions with OR logic to select matching records

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

| Setting        | Description                                                          |
| -------------- | -------------------------------------------------------------------- |
| **Conditions** | One or more filter conditions                                        |
| **Logical**    | **OR** (any condition matches - default) or **AND** (all must match) |

Each condition specifies:

| Setting      | Description                                                                                |
| ------------ | ------------------------------------------------------------------------------------------ |
| **Field**    | The field to evaluate                                                                      |
| **Operator** | Comparison operator (equals, not equals, greater than, less than, contains, is null, etc.) |
| **Value**    | The static value to compare against                                                        |

## How It Works

<Steps>
  <Step title="Define conditions">
    Add one or more conditions, each comparing a field against a static value.
  </Step>

  <Step title="Set the logic operator">
    Choose **OR** to pass records matching any condition, or **AND** to require all conditions.
  </Step>
</Steps>

## 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](/guide/nodes/condition/field-comparison-condition-node) instead
* Chain with other filter nodes for complex multi-step filtering

## Related Nodes

* **[Simple Filter](/guide/nodes/filter/simple-filter-node)** - equivalent filtering with the same condition operators
* **[Basic Condition](/guide/nodes/condition/basic-condition-node)** - branches into TRUE/FALSE paths instead of excluding records
