# 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" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: border-box;">This function has these arguments:</span>

| <span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: border-box;">Argument</span> | <span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: border-box;">Description</span> |
| -------- | ----------- |
| <span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: border-box;"> </span>*<span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: border-box;">value</span>* | <span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: border-box;"> [</span>Required] The value that you want to round. |
| <span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: border-box;"> </span>*<span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: border-box;">places</span>* | <span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: border-box;"> [</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