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

# Ceiling

The Ceiling function rounds a number up to the nearest integer multiple of specified significance.

{% code overflow="wrap" lineNumbers="true" fullWidth="false" %}

```nb
Ceiling(3.14, 0.1) → 3.2
Ceiling(7, 3) → 9
```

{% endcode %}

#### Inputs

`Ceiling(value, [factor])`

`value` - The value to round up to the nearest integer multiple of `factor`.

`[factor]` - \[optional: `1` by default] - The number to whose multiples `value` will be rounded. `factor` may not be equal to `0`
