combining 2 pieces of text from 2 columns

  • Thread starter Thread starter alexy
  • Start date Start date
A

alexy

Column A has first names, and B second names.
I want C to list the 2 names together, how do I do this?

thanks, Alex.
 
Hi Alex

Assuming you have put one blank space after the first name, in column C you
can use the following:-

=CONCATENATE(A1,B1)

If you haven't, when using the formula wizard select CONCATENATE and in the
Text1 box, select the cell A1 and put one blank space after it

Hope this helps you.

Ellie
 
Good morning Alexy

Either of these two will do the trick:

=CONCATENATE(A1," ",B1)
=A1&" "&B1

HTH

Dominic
 

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

Back
Top