FLOOR

Rounds number down, toward zero, to the nearest multiple of significance.

Syntax

FLOOR(number,significance)

Number—is the numeric value you want to round.

Significance—is the multiple to which you want to round.

Remarks

Examples

FLOOR(2.5, 1) equals 2

FLOOR(-2.5, -2) equals -2

FLOOR(-2.5, 2) equals #NUM!

FLOOR(1.5, 0.1) equals 1.5

FLOOR(0.234, 0.01) equals 0.23