سؤال

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