Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Soy principiante y necesiataría ayuda con una expresión
Necesitaría integrar varios IF de la siguiente manera
IF X = 1, 1, IF X=2, 2, IF X=3, 3, IFx=4, 4 si no es ningunoo indicar 'error'
¿Puede ayudarme alguien?
Hello, you can try :
If(X=1,1,if(X=2,2,If(X=3,3,if(X=4,4,'error'))))
Regards
Hello, you can try :
If(X=1,1,if(X=2,2,If(X=3,3,if(X=4,4,'error'))))
Regards
Muchas gracias!