Ayuda de LibreOfficeDev 7.4
Rounds a number to the nearest multiple of a significance value.
For a positive number and a positive significance value, the function rounds up (away from zero). For a negative number and a negative significance value, the direction of rounding is determined by the value of a mode parameter. The function returns an error if the number and significance values have opposite signs.
Si el libro se exporta a Microsoft Excel, la función MULTIPLO.SUPERIOR se exportará como la función equivalente MULTIPLO.SUPERIOR.MAT, la cual existe desde Excel 2013. Si tiene pensado utilizar el libro con versiones anteriores de Excel, elija entre emplear MÚLTIPLO.SUPERIOR.EXACTO, disponible desde Excel 2010, o MULTIPLO.SUPERIOR.XCL, la cual se exporta como MULTIPLO.SUPERIOR, compatible con todas las versiones de Excel.
CEILING(Number [; Significance [; Mode]])
Number is the number that is to be rounded, or a reference to a cell containing the number.
Significance (optional) is the value, or a reference to a cell containing the value, to whose multiple Number is to be rounded. It defaults to +1 or -1 depending on the sign of Number.
Modo (opcional) es un número, o una referencia a una celda que contiene un número. La función solo utiliza el Modo si tanto Número como Significatividad son negativos. Así, si Modo se da y no es igual a cero, los números se redondean a la baja (alejándose de cero); si Modo es igual a cero o no se proporciona, los números negativos se redondean al alza (aproximándose a cero).
=MULTIPLO.SUPERIOR(3,45) devuelve 4.
=MULTIPLO.SUPERIOR(3,45; 3) devuelve 6.
=MULTIPLO.SUPERIOR(-1,234) devuelve −1.
=CEILING(-45.67; -2; 0) returns -44.
=CEILING(-45.67; -2; 1) returns -46.
Redondea al alza un número hacia el múltiplo de significación más próximo.
For a positive number the function rounds up (away from zero). For a negative number, the function rounds up (towards zero). The sign of the significance value is ignored.
This function calculates identical results to the ISO.CEILING function.
CEILING.PRECISE(Number [; Significance])
Significatividad (opcional) es el valor, o bien, una referencia a una celda que lo contenga, a cuyo múltiplo el Número debe redondearse. El valor predeterminado es 1.
=CEILING.PRECISE(3.45) returns 4.
=CEILING.PRECISE(-45.67; 2) returns -44.
COM.MICROSOFT.CEILING.PRECISE
Rounds a number to the nearest multiple of a significance value.
For a positive number the function rounds up (away from zero). For a negative number, the direction of rounding is determined by the value of a mode parameter. The sign of the significance value is ignored.
This function exists for interoperability with Microsoft Excel 2013 or newer.
CEILING.MATH(Number [; Significance [; Mode]])
Significatividad (opcional) es el valor, o bien, una referencia a una celda que lo contenga, a cuyo múltiplo el Número debe redondearse. El valor predeterminado es 1.
Mode (optional) is a number, or a reference to a cell containing a number. If Mode is given and not equal to zero, a negative Number is rounded down (away from zero). If Mode is equal to zero or is not given, a negative Number is rounded up (towards zero).
=CEILING.MATH(3.45) returns 4.
=CEILING.MATH(3.45; -3) returns 6.
=CEILING.MATH(-1.234) returns -1.
=CEILING.MATH(-45.67; -2; 0) returns -44.
=CEILING.MATH(-45.67; +2; 1) returns -46.
COM.MICROSOFT.CEILING.MATH
Redondea un número al múltiplo de la significatividad más próximo.
En el caso de un número y una significatividad positivos, la función redondea al alza (alejándose del cero). Para números negativos y significatividades positivas, la dirección de redondeo es al alza (aproximándose al cero). Si tanto el número como la significatividad son negativos, la función redondea a la baja (alejándose del cero). La función devuelve un error y el número es positivo y la significatividad, negativa.
Esta función existe para la interoperatividad con Microsoft Excel 2007 o versiones anteriores. Si un libro de Calc se exporta a Microsoft Excel, las referencias a la función MULTIPLO.SUPERIOR.XCL de Calc se exportan como referencias a la función MULTIPLO.SUPERIOR de Excel, la cual es compatible con todas las versiones de Excel. De la misma manera, si se importa un libro de Excel en Calc, las referencias a la función MULTIPLO.SUPERIOR de Excel se importan como referencias a la función MULTIPLO.SUPERIOR.XCL de Calc.
MULTIPLO.SUPERIOR.XCL(Número; Significatividad)
Significatividad es el valor, o bien, la referencia a una celda que contiene el valor, a cuyo múltiplo el Número debe redondearse.
=MULTIPLO.SUPERIOR.XCL(3,45;2) devuelve 4.
=MULTIPLO.SUPERIOR.XCL(-45,67; 2) devuelve −44.
=MULTIPLO.SUPERIOR.XCL(-45,67; -2) devuelve −46.
COM.MICROSOFT.CEILING
Redondea al alza un número hacia el múltiplo de significatividad más próximo.
Para un número positivo, la función redondea al alza (alejándose de cero). Para un número negativo, la función redondea al alza (aproximándose a cero). Se ignora el signo del valor de significatividad.
This function calculates identical results to the CEILING.PRECISE function.
ISO.CEILING(Number [; Significance])
Significatividad (opcional) es el valor, o bien, una referencia a una celda que lo contenga, a cuyo múltiplo el Número debe redondearse. El valor predeterminado es 1.
=ISO.CEILING(3.45) returns 4.
=ISO.CEILING(-45.67; 2) returns -44.
COM.MICROSOFT.ISO.CEILING