# MROUND

The MROUND function rounds a number to the nearest multiple of a specified value.

## Syntax

```javascript
mround(value, multiple)
```

## Arguments

value - Required. The number to be rounded.

multiple - Optional. The multiple to which you want to round.

## Example

```javascript
MROUND(COLUMN1, 2)
```

Returns the round of COLUMN1 to the nearest multiple of 2.

<figure><img src="https://3062809325-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FEbkCXCUXmtUq5tcnUtZE%2Fuploads%2F5ssT0jl6hXzge6muuhoO%2Fimage.png?alt=media&#x26;token=30beb32d-ebf7-4037-b4fc-ab4f5497e450" alt=""><figcaption><p>Round off the Quanity to the nearest multiple of 2</p></figcaption></figure>
