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

# and

> Creates a filter where multiple criteria must be met.

Filters based on multiple conditions. Returns rows that meet all specified criteria.

## Syntax

```yaml theme={null}
<field_name>:
  and:
    - <filter_operator>: <value>
    - <filter_operator>: <value>
```

## Properties

<ParamField path="field_name" type="string" required>
  The field to filter on, specified in the format `view_name.field_name`. Can be a time, numeric, or string field.
</ParamField>

<ParamField path="and" type="string" required>
  The `and` operator. Contains a list of conditions that must be met to be included in the filter results:

  <Expandable title="conditions" defaultOpen="true">
    <ParamField path="filter_operator" type="string" required>
      A filter operator such as [`before`](/modeling/filters/operators/before), [`greater_than`](/modeling/filters/operators/greater-than), etc. and its corresponding value.
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml title="Matches dates in Q1 on the 15th of the month (January, February, March 15)" theme={null}
users.created_date:
  and:
    - quarter_of_year: 1
    - day_of_month: 15
```
