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

# greater_than_or_equal_to

> Filters numeric fields for values greater than or equal to a specified number.

Filters numeric fields for values greater than or equal to a specified number. Returns rows where the field value is ≥ the specified value.

## Syntax

```yaml theme={null}
<numeric_field>:
  greater_than_or_equal_to: <number>
```

## Properties

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

<ParamField path="greater_than_or_equal_to" type="number" required>
  The minimum value (inclusive). Returns rows where the field value is ≥ this number. Decimals are supported.
</ParamField>

## Examples

```yaml title="Total price is 100.00 or more" theme={null}
orders.total_price:
  greater_than_or_equal_to: 100.00
```

```yaml title="Age is 18 or less" theme={null}
users.age:
  not_greater_than_or_equal_to: 18
```
