# ROUND

## Content

This function rounds the specified value to the nearest number, using the specified number of decimal places.

## Syntax

`ROUND(value, places)`

## Arguments

<span data-teams="true">This function has these arguments:</span>

| <span data-teams="true">Argument</span> | <span data-teams="true">Description</span> |
| -------- | ----------- |
| <span data-teams="true"> </span>*<span data-teams="true">value</span>* | <span data-teams="true"> [</span>Required] The value that you want to round. |
| <span data-teams="true"> </span>*<span data-teams="true">places</span>* | <span data-teams="true"> [</span>Required] The value of digits to which you want to round the number argument. |

## Remarks

The result may be rounded up or rounded down.

## Examples

`ROUND(A3,–2)`
`ROUND(C4,B2)`
`ROUND(R1C2,2)`
`ROUND(PI(),5)` gives the result 3.14159
`ROUND(29.2,-2)` gives the result 0 because 29.2 is closer to 0 than 100.
`ROUND(-1.963,0)` gives the result -2