CAMBIAR

SWITCH compares expression with value1 to valuen and returns the result belonging to the first value that equals expression. If there is no match and default_result is given, that will be returned.

tip

Esta función está disponible desde LibreOffice 5.2


Sintaxis

CAMBIAR( expresión, valor1, resultado1[, valor2, resultado2][, … ][, resultado_predeterminado] )

expresión es una entrada de texto, numérica, lógica o de fecha, o bien, una referencia a otra celda.

value1, value2, ... is any value or reference to a cell. Each value must have a result given.

result1, result2, ... is any value or reference to a cell.

default_result: any value or reference to a cell that is returned when there is no match.

If no value equals expression and no default result is given, a #N/A error is returned.

Ejemplos

=SWITCH(MONTH(A3),1,"January",2,"February",3,"March","No match") returns "January" when A3 contains a date in January, "February" when A3 contains a date in February , etc...

¡Necesitamos su ayuda!