Domanda

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?

È stato utile?

Soluzione

Do this instead:

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

Altri suggerimenti

you can simply do it like:

=IF(N3=100, "Text "&A3), "Result")
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top