Ayuda de LibreOffice 7.4
Redondea un número al múltiplo más cercano de un valor de significatividad.
For a positive number and a positive significance value, the function rounds down (towards 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.
If the spreadsheet is exported to Microsoft Excel, the FLOOR function is exported as the equivalent FLOOR.MATH function that has existed since Excel 2013. If you plan to use the spreadsheet with earlier Excel versions, use either FLOOR.PRECISE that has existed since Excel 2010, or FLOOR.XCL that is exported as the FLOOR function compatible with all Excel versions.
MULTIPLO.INFERIOR(Número[; Significatividad[; Modo]])
Number is the number that is to be rounded, or a reference to a cell containing the number.
Significatividad (opcional) es el valor, o una referencia a una celda que contiene el valor, a cuyo múltiplo Número se redondeará. Su valor predeterminado es +1 o −1, en función del signo de Número.
Mode (optional) is a number, or a reference to a cell containing a number. The function only uses Mode if both Number and Significance are negative. Then if Mode is given and not equal to zero, numbers are rounded up (towards zero); if Mode is equal to zero or not given, negative numbers are rounded down (away from zero).
=MULTIPLO.INFERIOR(3,45) devuelve 3.
=MULTIPLO.INFERIOR(3,45; 3) devuelve 3.
=MULTIPLO.INFERIOR(-1,234) devuelve −2.
=MULTIPLO.INFERIOR(-45,67; -2; 0) devuelve −46.
=MULTIPLO.INFERIOR(-45,67; -2; 1) devuelve −44.
Redondea un número al múltiplo más cercano de un valor de significatividad.
For a positive number the function rounds down (towards 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.
Esta función existe por razones de interoperatividad con Microsoft Excel, versión 2013 o más reciente.
MULTIPLO.INFERIOR.MAT(Número[; Significatividad[; Modo]])
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 up (towards zero). If Mode is equal to zero or is not given, a negative Number is rounded down (away from zero).
=MULTIPLO.INFERIOR.MAT(3,45) devuelve 3.
=MULTIPLO.INFERIOR.MAT(3,45;-3) devuelve 3.
=MULTIPLO.INFERIOR.MAT(-1,234) devuelve −2.
=MULTIPLO.INFERIOR.MAT(-45,67;-2; 0) devuelve −46.
=MULTIPLO.INFERIOR.MAT(-45,67;+2; 1) devuelve −44.
COM.MICROSOFT.FLOOR.MATH
Rounds a number down to the nearest multiple of a significance value.
For a positive number the function rounds down (towards zero). For a negative number, the function rounds down (away form zero). The sign of the significance value is ignored.
MULTIPLO.INFERIOR.EXACTO(Número[; Significatividad])
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.
=MULTIPLO.INFERIOR.EXACTO(3,45) devuelve 3.
=MULTIPLO.INFERIOR.EXACTO(-45,67;2) devuelve −46.
COM.MICROSOFT.FLOOR.PRECISE
Redondea un número al múltiplo más cercano de un valor de significatividad.
For a positive number and a positive significance value, the function rounds down (towards zero). For a negative number and a positive significance value, the function rounds down (away from zero). For a negative number and a negative significance value, the function rounds up (towards zero). The function returns an error if the number is positive and the significance value is negative.
Esta función existe para la interoperatividad con Microsoft Excel 2007 o anterior. Si una hoja de cálculo de Calc se exporta a Microsoft Excel, las referencias a la función MULTIPLO.INFERIOR.XCL de Calc se exportan como referencias a la función MULTIPLO.INFERIOR de Excel, que es compatible con todas las versiones de Excel. Si se importa una hoja de cálculo de Microsoft Excel a Calc, las referencias a la función MULTIPLO.INFERIOR de Excel se importan como referencias a la función MULTIPLO.INFERIOR.XCL de Calc.
MULTIPLO.INFERIOR.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.
=FLOOR.XCL(3.45,2) returns 2.
=MULTIPLO.INFERIOR.XCL(-45,67;2) devuelve −46.
=MULTIPLO.INFERIOR.XCL(-45,67;-2) devuelve −44.
COM.MICROSOFT.FLOOR