Pregunta

I am trying to get the following statement to work.

=IF(N3=100, (=concatenate("Text",A3;)), "Result").

Keep on coming with an error.

Any ideas please?

¿Fue útil?

Solución

Do this instead:

=IF(N3=100, concatenate("Text",A3), "Result")

Otros consejos

you can simply do it like:

=IF(N3=100, "Text "&A3), "Result")
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top