Frage

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?

War es hilfreich?

Lösung

Do this instead:

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

Andere Tipps

you can simply do it like:

=IF(N3=100, "Text "&A3), "Result")
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top