MROUND Function (DAX)
Returns a number rounded to the desired multiple.
MROUND(<number>, <multiple>)
Parameters
| Term | Definition |
|---|---|
| number | The number to round. |
| multiple | The multiple of significance to which you want to round the number. |
A decimal number.
MROUND rounds up, away from zero, if the remainder of dividing number by the specified multiple is greater than or equal to half the value of multiple.
Description
The following expression rounds 1.3 to the nearest multiple of .2. The expected result is 1.4.
Code
=MROUND(1.3,0.2)
Description
The following expression rounds -10 to the nearest multiple of -3. The expected result is -9.
Code
=MROUND(-10,-3)
Description
The following expression returns an error, because the numbers have different signs.
Code
=MROUND(5,-2)
Math and Trig Functions (DAX)
ROUND Function (DAX)
ROUNDUP Function (DAX)
ROUNDDOWN Function (DAX)
MROUND Function (DAX)
INT Function (DAX)
Community Additions
ADD
Show: