> ## 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.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.omni.co/feedback

```json
{
  "path": "/modeling/filters/operators/day-of-quarter",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# day_of_quarter

> Filters time fields by the day of the quarter.

Filters time fields by the day of the quarter. Returns rows where the date falls on the specified day of the quarter.

## Syntax

```yaml theme={null}
<time_field>:
  day_of_quarter: <day_number>
```

## Properties

<ParamField path="time_field" type="string" required>
  The time/date field to filter on, specified in the format `view_name.field_name`.
</ParamField>

<ParamField path="day_of_quarter" type="number" required>
  The day(s) of the quarter to filter for. Value must be a number between `1` and `92`.
</ParamField>

## Examples

```yaml title="First day of quarter" theme={null}
users.created_at:
  day_of_quarter: "1"
```

```yaml title="Not the last day of quarter" theme={null}
users.created_at:
  day_of_quarter: "92"
```
