Joining Text from two Cells into One

J

Juan

If I have input "Jhon Doe" into cell A1 and "Jane Doe" into cell A2, how
can I get cell B1 to read

"Jhon Doe & Jane Doe"

If it were numbers I would write the following in B1, =A1+A2, but even
that would just add the two numbers together. And since it's text I'm
clueless. Any ideas?
 
M

moon

You already gave the answer yourself.

=A1 & B1 will give "Jhon DoeJaneDoe"
=A1 & " & " & B1 will give "Jhon Doe & Jane Doe"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top