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