What does this function do?
Rounds down a number to the number of decimal places specified.
Syntax:
ROUNDDOWN(number, num_digits)
- number (required): Any real number that you want rounded down.
- num_digits (required): The number of digits to which you want to round number.
Examples:
=ROUNDDOWN(8.2,0) = 8=ROUNDDOWN(3.14159, 3) = 3.141
No comments:
Post a Comment