Question

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?

Était-ce utile?

La solution

Do this instead:

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

Autres conseils

you can simply do it like:

=IF(N3=100, "Text "&A3), "Result")
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top