Skip to main content

ROUND

Definition

Rounds a number to a certain number of decimal places according to standard rules.

Sample Usage

Syntax

ROUND(value,places)

  • value - The value to round to places number of places.

  • places - [ OPTIONAL - 0 by default ] - The number of decimal places to which to round.

    • places may be negative, in which case value is rounded at the specified number of digits to the left of the decimal point.

Notes

  • Standard rules indicate that when rounding to a particular place, the next most significant digit (the digit to the right) is considered. If this digit is greater than or equal to 5, the digit is rounded up, otherwise it is rounded down. This occurs irrespective of sign; that is, 'up' and 'down' are in terms of magnitude.

See Also

TRUNC: Truncates a number to a certain number of significant digits by omitting less significant digits.

ROUNDUP: Rounds a number to a certain number of decimal places, always rounding up to the next valid increment.

ROUNDDOWN: Rounds a number to a certain number of decimal places, always rounding down to the next valid increment.

MROUND: Rounds one number to the nearest integer multiple of another.

INT: Rounds a number down to the nearest integer that is less than or equal to it.

FLOOR: Rounds a number down to the nearest integer multiple of specified significance.

CEILING: Rounds a number up to the nearest integer multiple of specified significance.

In order to use the ROUND formula, start with your edited Excellentable. Then type in the ROUND Formula in the area you would like to display the outcome:

Excellentable generates the required output :

 

 

A
B
1
ROUND Formula
Value
2
ROUND(126.125,0)
126
3
ROUND(126.125,1)
126.1
4
ROUND(126.125,2)
126.13
5
ROUND(126.125,3)
126.125
6
ROUND(126.125,-1)
130
7
ROUND(126.125,-2)
100

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.