Combining data from 3 fields (colums)

G

Guest

I have a list of doctors on a spread sheet. Column A is "First Name", Coumn B is "Last name" and Column C is "Degree". I would like to combint the three columns to in Column D to read Joe Smith, MD. Note that I would have to add comma after last name. Any help is greatly appreciated.
 
A

Andy B

Hi

Try this:

=A1&" "&B1&", "&C1

Andy.

Tom S. said:
I have a list of doctors on a spread sheet. Column A is "First Name",
Coumn B is "Last name" and Column C is "Degree". I would like to combint
the three columns to in Column D to read Joe Smith, MD. Note that I would
have to add comma after last name. Any help is greatly appreciated.
 
F

Frank Kabel

Hi
try
=A1 & " " & B1 & ", " & C1

--
Regards
Frank Kabel
Frankfurt, Germany

Tom S. said:
I have a list of doctors on a spread sheet. Column A is "First
Name", Coumn B is "Last name" and Column C is "Degree". I would like
to combint the three columns to in Column D to read Joe Smith, MD.
Note that I would have to add comma after last name. Any help is
greatly appreciated.
 
R

RagDyeR

=A1&" "&B1&", "&C1
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================

I have a list of doctors on a spread sheet. Column A is "First Name", Coumn
B is "Last name" and Column C is "Degree". I would like to combint the
three columns to in Column D to read Joe Smith, MD. Note that I would have
to add comma after last name. Any help is greatly appreciated.
 

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