Reputation: 7
Usually I do this Excel and it works fine:
= A1 & " example word"
However, when I do this, it doesn't work:
= A1 & " B1 example word"
So I was wondering if anyone got a solution to this problem?
Thank you.
Upvotes: 0
Views: 54
Reputation: 7055
You could also use the CONCATENATE
function:
=CONCATENATE(A1, " ", B1, " example word")
Upvotes: 0
Reputation: 152505
You need to move any cell references outside the ""
and concatenate them with &
:
=A1 & " " & B1 & " example word"
Upvotes: 2