CEILING

The function CEILING rounds a number up to the nearest specified multiple.

This function takes a Number as input. By default, it will return the given number rounded up to the nearest integer, though it also accepts, as an option, another Number as input, which specifies which place to round down to.

Declaration

CEILING(base_number, multiple) -> rounded_number

 

Parameters

base_number (required, type: Number)
Any number. This is the number that will be rounded up.

multiple (optional, type: Number)
The multiple to round up to.
For instance, a multiple of 10 will round the given number up to the nearest ten, while a multiple of 0.01 will round the given number up to the nearest hundredth.

Return Values

rounded_number (type: Number)
The base number rounded down to the given multiple.

Examples

The following example takes the number 21.1 and rounds it up to the nearest integer, the ones place being the default place that CEILING rounds up to. Note that, despite the number occupying the tenths place in the base number being 1 – the small number that could possibly occupy it – CEILING still rounds up:

CEILING(21.1) -> 22

The following example takes the number 312 and rounds it up to the nearest hundreds place. Note again that CEILING always rounds the base number up:

CEILING(312, 100) -> 400

The following example takes the number 102.11111 and rounds it up to the tenths place. Note one last time that CEILING always rounds the base number up:

CEILING(102.11111, 0.1) -> 102.2