> ## 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/less-than",
  "feedback": "Description of the issue"
}
```

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

</AgentInstructions>

# less_than

> Filters numeric fields for values strictly less than a specified number.

Filters numeric fields for values strictly less than a specified number. Returns rows where the field value is \< the specified value.

## Syntax

```yaml theme={null}
<numeric_field>:
  less_than: <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="less_than" type="number" required>
  The maximum value (exclusive). Returns rows where the field value is \< this number. Decimals are supported.
</ParamField>

## Examples

```yaml title="Total price is 99.99 or less" theme={null}
orders.total_price:
  less_than: 100.00
```

```yaml title="Age is 19 or more" theme={null}
users.age:
  not_less_than: 18
```
