Skip to main content
Version: Streamsheets 2.5

CEILING

Returns a given number rounded up to the nearest multiple of specified significance. The multiple to use for rounding is provided as the significance argument. If the number is already an exact multiple, no rounding occurs and the original number is returned. To round down use FLOOR().

Syntax

=CEILING(Number, Significance)

Arguments

NameDescription
NumberThe number to round
SignificanceThe multiple to use when rounding

Return

The rounded number or an error value.

Examples

FormulaResultComment
=CEILING(4.32, 0.05)
4.35
=CEILING(-2.5, 2)
-2