How do I combine two EXCEL columns?

G

Guest

I have an EXCEL 2003 worksheet containing addresses. The street address
information is in two columns. For instance, for the address 123 Main Street,
the worksheet has one column containing "123" and another column containing
"Main St."

How do I combine the two columns so that I have a new column that contains
"123 Main Street"? I will appreciate advice.
 
P

Pete_UK

Assume the house number is in column A and the street name in column B
- enter this formula in column C:

=A1 & " " & B1

and copy down for as many items as you have in columns A and B. Fix the
values by highlighting column C then <copy> and Edit | Paste Special |
Values (check), OK and <Esc>. You could now delete the original columns
A and B.

Hope this helps.

Pete


Hope this helps.

Pete
 
G

Gord Dibben

And then when you want to sort by street, you can break it into two columns
again using Data>Text to Columns.

My advice..............leave it two columns.

Your lfe will be easier down the road.


Gord Dibben MS Excel MVP
 
G

Guest

Thank you. I used:

=A1&""&B1

However, I am getting "123Main St." instead of what I want, which is "123
Main St." How do I change the forumula to insert a space between "123" and
"Main"?
 
D

David Biddulph

If you'd used the formula you were given by Pete you would have been OK.
You need the space between the quote marks.
=A1&" "&B1
not
=A1&""&B1
 

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