Ayuda de LibreOffice 7.4
Redondea a la baja un número, manteniendo un número especificado de dígitos decimales.
This function is equivalent to the TRUNC function.
REDONDEAR.MENOS(Número [; Recuento])
Número: el número que se redondeará a la baja.
Count: Optional parameter that defines the number of decimal places to be kept. The default value is 0 (zero).
Use negative values for Count to round the integer part of the original Number. For example, -1 will round down the first integer number before the decimal separator, -2 will round down the two integer numbers before the decimal separator, and so forth.
En LibreOffice, el parámetro Recuento es opcional, mientras que en Microsoft Excel es obligatorio. Cuando un archivo ODS contiene una llamada a REDONDEAR.MENOS sin el parámetro Recuento y el archivo se exporta a los formatos XLS o XLSX, se añadirá el argumento automáticamente, con un valor de cero, para mantener la compatibilidad.
=ROUNDDOWN(21.89) returns 21. Note that this example uses the default value for Count which is 0.
=REDONDEAR.MENOS(103,37;1) devuelve 103,3.
=REDONDEAR.MENOS(0,664;2) devuelve 0,66.
=ROUNDDOWN(214.2,-1) returns 210. Note the negative value for Count, which causes the first integer value before the decimal separator to be rounded towards zero.