Sorting/Converting Street Addresses

dmontez

New Member
Joined
Nov 17, 2008
Messages
25
I have street addresses in one column. Example 1234 E Fake St, Unit 102

I need to seperate the 1234 E into one column then the Fake St into another and then Unit 102 into it's own aswell. I know how to use Text To Columns but it will only allow me to use space with ends up with everthing in its own column. 1234 E Fake St Unit 102

I dont want that cause then I have to put the ones I need together back together.

Thanks!
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
text to columns does allow you to choose one of several delimiters - space, comma, tab, and other

just select Delimited instead of Fixed Width in step 1, and then keep clicking Next button instead of Finish - it will take you thru that step
 
Upvote 0
Try:
Your data in A1 then:

B1:=TRIM(LEFT(A1,FIND("@",SUBSTITUTE(A1," ","@",2))))
C1:=TRIM(SUBSTITUTE(SUBSTITUTE(A1,B1,""),MID(A1,FIND(",",A1),LEN(A1)),""))
D1:=TRIM(MID(A1,FIND(",",A1)+2,LEN(A1)))
 
Upvote 0

Forum statistics

Threads
1,215,616
Messages
6,125,865
Members
449,266
Latest member
davinroach

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top