Bulatkan angka ke bawah ke kelipatan terdekat
=FLOOR.PRECISE(number, [significance])
| Parameter | Deskripsi |
|---|---|
number |
The number that should be rounded. |
significance |
[optional] Multiple to use when rounding. Default is 1. |
By default, FLOOR.PRECISE rounds down to the next integer, with a significance of 1.
=FLOOR.PRECISE(3.75) // returns 3
=FLOOR.PRECISE(8.9) // returns 8
To round to a different multiple, provide a value for significance :
=FLOOR.PRECISE(5.75,3) // returns 3
=FLOOR.PRECISE(5.75,2) // returns 4
=FLOOR.PRECISE(5.75,0.5) // returns 5.5
The FLOOR.PRECISE function always rounds negative numbers down away from zero, and ignores the sign of significance.
=FLOOR.PRECISE(-4.1) // returns -5
=FLOOR.PRECISE(-4.1,1) // returns -5
=FLOOR.PRECISE(-4.1,-1) // returns -5