> For the complete documentation index, see [llms.txt](https://v5docs.keyfax.biz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://v5docs.keyfax.biz/reference/expression-reference/numeric-expressions/round.md).

# Round

Rounds the databox value to the nearest whole number.

| Expression | Databox value | Result |
| ---------- | ------------- | ------ |
| `Round`    | `12.59`       | `13`   |
| `Round`    | `1.5`         | `2`    |
| `Round`    | `2.5`         | `2`    |

A value ending in `.5` goes to the nearest **even** whole number, which is why `1.5` gives 2 and `2.5` also gives 2.

See also [Int](/reference/expression-reference/numeric-expressions/int.md) and [Trunc](/reference/expression-reference/numeric-expressions/trunc.md).
