A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
**1.**The ROUND function rounds a number to a specified number of digits. For example, if cell A1 contains 23.7825, and you want to round that value to two decimal places, you can use the following formula:
=ROUND(A1, 2) will return 23.78
2. CEILING Returns number rounded up, away from zero, to the nearest multiple of significance.
Syntax
CEILING(number,significance)
Number is the value you want to round.
Significance is the multiple to which you want to round.
For example, if you want to avoid using pennies in your prices and your product is priced at $23.78, use the formula =CEILING(23.78,0.05) to round prices up to the nearest nickel. i.e. it will return 23.80
3. FLOORReturns number rounded down, towards zero, to the nearest multiple of significance.
Syntax
FLOOR(number,significance)
Number is the value you want to round.
Significance is the multiple to which you want to round.
For example, if you want to avoid using pennies in your prices and your product is priced at $23.78, use the formula =FLOOR(23.78,0.05) to round prices up to the nearest nickel. i.e. it will return 23.75