Вопрос

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?

Это было полезно?

Решение

Do this instead:

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

Другие советы

you can simply do it like:

=IF(N3=100, "Text "&A3), "Result")
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top