# MROUND

The *MROUND* function rounds a number to the nearest multiple of a specified value. It adjusts the input number up or down to the closest multiple based on the given significance. This function is commonly used in financial calculations, pricing, and quantity adjustments where values must align with defined increments.

#### Syntax

```javascript
MROUND(value, multiple)
```

#### Arguments

* `value`: The number to round.
* `multiple`: The multiple to which the number is rounded.

#### Return value

Returns the number rounded to the nearest specified multiple.

#### Example

```javascript
MROUND(Planned Units, 5)
```

In the example below, the *Rounded Planned Units* measure is created using the MROUND function, which rounds the *Planned Units* values to the nearest multiple of 5.

<figure><img src="/files/796GeTasOjA89CuOD7jD" alt=""><figcaption></figcaption></figure>

#### Excel equivalent

[MROUND](https://support.microsoft.com/en-us/office/mround-function-c299c3b0-15a5-426d-aa4b-d2d5b3baf427)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.fabricplan.com/planning-sheets/formula-syntax/math-functions/mround.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
