Difference between revisions of "Documentation/How Tos/Calc: MROUND function"

From Apache OpenOffice Wiki
Jump to: navigation, search
m (Robot: Automated text replacement %s)
m (Robot: Automated text replacement %s)
Line 23: Line 23:
 
* [[Documentation/How_Tos/Calc: FLOOR function|FLOOR]]
 
* [[Documentation/How_Tos/Calc: FLOOR function|FLOOR]]
 
* [[Documentation/How_Tos/Calc: EVEN function|EVEN]]
 
* [[Documentation/How_Tos/Calc: EVEN function|EVEN]]
* [[Documentation/How_Tos/Calc: ODD function|ODD]]'''
+
* [[Documentation/How_Tos/Calc: ODD function|ODD]]
  
 
* [[Documentation/How_Tos/Calc: INT function|INT]]
 
* [[Documentation/How_Tos/Calc: INT function|INT]]
Line 29: Line 29:
 
* [[Documentation/How_Tos/Calc: ROUND function|ROUND]]
 
* [[Documentation/How_Tos/Calc: ROUND function|ROUND]]
 
* [[Documentation/How_Tos/Calc: ROUNDDOWN function|ROUNDDOWN]]
 
* [[Documentation/How_Tos/Calc: ROUNDDOWN function|ROUNDDOWN]]
* [[Documentation/How_Tos/Calc: ROUNDUP function|ROUNDUP]]'''
+
* [[Documentation/How_Tos/Calc: ROUNDUP function|ROUNDUP]]
  
* [[Documentation/How_Tos/Calc: Mathematical functions|Mathematical functions]]'''
+
* [[Documentation/How_Tos/Calc: Mathematical functions|Mathematical functions]]
  
 
* [[Documentation/How_Tos/Calc: Functions listed alphabetically|Functions listed alphabetically]]
 
* [[Documentation/How_Tos/Calc: Functions listed alphabetically|Functions listed alphabetically]]
 
* [[Documentation/How_Tos/Calc: Functions listed by category|Functions listed by category]]}}
 
* [[Documentation/How_Tos/Calc: Functions listed by category|Functions listed by category]]}}

Revision as of 14:27, 26 February 2009


MROUND

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

This function is only available if the Analysis AddIn is installed.

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).

Template:Documentation/SeeAlso

Personal tools