Separate text and number from address with no space

cktrini

New Member
Joined
Mar 17, 2011
Messages
2
How do I separate addresses in column that have no spaces. Ideally I want to format the address with spaces, but if I have to separate text and numbers into columns then concatenate, which I am not sure of. Here's an example:

121SW23rdSt
11964sw75 st
8199sw107
1243sw76 ave
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
One way, assuming your posted example is in A1:A4, place this formula into B1 and copy down to B4:

=LEFT(A1,MATCH(TRUE,ISERROR(1*MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1)),0)-1)&" "&MID(A1,MATCH(TRUE,ISERROR(1*MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1)),0),255)

Important, you must commit the formula to cell B1 by pressing Ctrl+Shift+Enter, not just with Enter.
 
Upvote 0
Thamk you so much. Now it looks great, but I am still seeing this

3050 SW110th St

How can I completely separate to:

3050 SW 110th St
 
Upvote 0

Forum statistics

Threads
1,215,064
Messages
6,122,942
Members
449,094
Latest member
teemeren

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