Merging fields

G

Guest

Hello,

In two columns I have a First Name and in the Second columne I have a last
name is it possible for me to convert the firstname and the lastname into one
field? for example |Doe, John|. I have over 500 names I would need to convert
or merge. How do you advise

Thanks,

Kelly
 
G

Guest

If first name is in column A and Last name in B then in C put

=B1& ", "&A1

and copy down
 
D

Dave Peterson

=b1&", "&a1

But keep the original two columns. You'll be happy when you have to use just
the first name or just the last name.

Hide them if you have to, but keep them.
 
G

Guest

Try using a concatenate function like =CONCATENATE(B2&", ",A2) or
=B2&", "&A2. I prefer the later.
 
G

Guest

Great that is exactly what I was my expected outcome :)

So now that I am able to place the names in the same column, how would I
eliminate the columns A and B with keeping the new format that I have
greated. I have attempted to delete the columns with the fname and the lname
and the format is deleted as well.
 

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