# ROUNDUP

## Content

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

## Syntax

`ROUNDUP(value, places)`

## Arguments

<span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: content-box; transition: filter 0.5s ease-in-out; line-height: 25.6px;">This function has these arguments:</span>

| <span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: content-box; transition: filter 0.5s ease-in-out; line-height: 25.6px;">Argument</span> | <span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: content-box; transition: filter 0.5s ease-in-out; line-height: 25.6px;">Description</span> |
| -------- | ----------- |
| *<span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: content-box; transition: filter 0.5s ease-in-out; line-height: 25.6px;">value</span>* | <span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: content-box; transition: filter 0.5s ease-in-out; line-height: 25.6px;"> [Required] </span>Any real value that you want rounded up |
| *<span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: content-box; transition: filter 0.5s ease-in-out; line-height: 25.6px;">places</span>* | <span data-teams="true" style="margin: 0px; padding: 0px; -webkit-font-smoothing: antialiased; box-sizing: content-box; transition: filter 0.5s ease-in-out; line-height: 25.6px;"> [Required] </span>The value of digits to which you want to round number |

## Remarks

Regardless of the sign of the number specified by the *value* argument, the number is rounded away from zero.

## Examples

`ROUNDUP(A3,–2)`
`ROUNDUP(C4,B2)`
`ROUNDUP(R1C2, 2)`
`ROUNDUP(PI(),5)` gives the result 3.14160
`ROUNDUP(29.2,-2)` gives the result 100
`ROUNDUP(-1.963,0)` gives the result -2