Skip to main content
Version: Streamsheets 3.0

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

NameTypeDescription
NumberNumberThe number to round
SignificanceNumberThe multiple to use when rounding

Return

TypeDescription
NumberThe rounded number or an error value.

Examples

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