Skip to main content
Version: Streamsheets 2.5

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

NameDescription
NumberThe number to round
SignificanceThe multiple to which should be rounded

Return

The 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