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

# on_or_after

> Filters time fields for dates on or after a specified date.

Filters time fields for dates on or after a specified date. Returns rows where the date is greater than or equal to the specified date.

## Syntax

```yaml theme={null}
<time_field>:
  on_or_after: <date>
```

## 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="on_or_after" type="string | date" required>
  The date threshold. Returns rows where the field value is greater than or equal to this date. Can be:

  * **Fixed date** - A fixed date in `YYYY-MM-DD` format. For example, `2024-01-01`
  * **Relative date** - A date relative to the current date. For example, `30 days ago`, `today`
</ParamField>

## Examples

```yaml title="Date is on or after January 1, 2024" theme={null}
users.created_at:
  on_or_after: 2024-01-01
```

```yaml title="Date is 30 days ago or less" theme={null}
orders.order_date:
  on_or_after: 30 days ago
```
