> For the complete documentation index, see [llms.txt](https://docs.cascade.io/cascade/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cascade.io/cascade/functions-and-expressions/functions/math/odd.md).

# ODD

ODD( `number`)

Rounds a `number` up to the nearest odd integer

### Arguments

| Argument | Description             |
| -------- | ----------------------- |
| `number` | Numeric column or value |

### Output

Odd integer

### Examples

```
ODD(94.3)
>> 95
```

```
ODD(4)
>> 5
```
