Reputation: 3126
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?
Upvotes: 2
Views: 8469
Reputation: 3830
Do this instead:
=IF(N3=100, concatenate("Text",A3), "Result")
Upvotes: 6