# ROUNDUP

The **ROUNDUP** function always rounds a number up, away from zero. Use ROUNDUP when you always need a higher estimate, such as in budgeting or safety margins.&#x20;

## Syntax

```javascript
roundup(value, significance)
```

## Arguments

value - Required. The number to be rounded.

significance - Optional. The number of decimal places to round off.

## Example

```javascript
ROUNDUP(Actuals,2) //Rounds the Actuals to 2 decimal places
```

<figure><img src="https://3062809325-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FEbkCXCUXmtUq5tcnUtZE%2Fuploads%2Fe480VOJ64DuTKAGoECIj%2Fimage.png?alt=media&#x26;token=ef1ef865-fb2f-4a88-a13d-bc8d7350dc82" alt=""><figcaption><p>ROUNDUP</p></figcaption></figure>
