Skip to main content
Version: Streamsheets 3.0

FLOOR

Returns a given number rounded down 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 up use CEILING().

Syntax

=FLOOR(Number, Significance)

Arguments

NameTypeDescription
NumberNumberThe number to round
SignificanceNumberThe multiple to which should be rounded

Return

TypeDescription
NumberThe rounded number or an error value.

Examples

FormulaResultComment
=FLOOR(4.32, 0.05)
4.3
=FLOOR(-45.67, 2
-46
=FLOOR(-45.67, -2)
-44