문제

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