MROUND


Returns a number rounded to the nearest multiple of another number.

Syntax:

MROUND(number, mult)

Returns number rounded to the nearest multiple of mult, that is to mult times an integer. An alternative implementation would be mult * ROUND(number/mult).

Example:

MROUND(15.5, 3)
returns 15, as 15.5 is closer to 15 ( = 3*5) than to 18 ( = 3*6).
MROUND(1.4, 0.5)
returns 1.5 ( = 0.5*3).






This page is protected by Google reCAPTCHA. Privacy - Terms.
 
Built using Zapof