ConcantenatingTwo Labels into One

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

I have a spreadsheet with 3 column: First Name, Last Name
and Full Name.
Is there some type of formula I can put into the Full Name
cell that will concantenate the values in the Last and
First Name cols such as this: "Last Name, First Name"?

Thank you
 
Sure -

=B1&", "&A1

i.e. =lastname&", "&firstname

You can also use the concatenate worksheet function,

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

In C1 enter =B1 & ", " & A1

Will return LastName, FirstName

Gord Dibben Excel MVP
 
Try =A1 & " " & B1 -- assuming first name is in A1 and last name is in B1.

Art
 
Bob,

You can either use the Concatenate function or you can use the shortcut.

Assume First name is in A1 and Last name is in B1.

Concatenate function
=============

=CONCATENATE(B1,", ",A1)

Shortcut
======

=B1&", "&A1

Either one will generate you the same result.

I hope this helps.

Sincerly,
Rekoj
 
Bob -

A2 - John, B2=Jones, C2 = Full Name

in C2 enter =A2&" "&B2

HTH,
Carole O
 

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