Creating a new field

  • Thread starter Michael Rodriguez
  • Start date
M

Michael Rodriguez

Q. I have a street address that is divided into 4 fields in an excel
(2002) file. They are all text. I need to combine them into one field
that I would name STREET. Is there a quick way of doing this. I am
very much a beginner and need all the help I can get.

Thank you.

Michael Rodriguez
 
N

Norman Jones

Hi Michael,

Assume that your address dat is in cells A1:D1:

In cell E1 enter the formula:

=A1 & ", " &B1 & ", " & C1 & ", " & D1
 
Top