> 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/even.md).

# EVEN

EVEN( `number`)

Rounds a `number` up to the nearest even integer

### Arguments

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

### Output

Even integer

### Examples

```
EVEN(94.3)
>> 96
```

```
EVEN(5)
>> 6
```
