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

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop

Tom Urtis

MrExcel MVP
Joined
Feb 10, 2002
Messages
11,282
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

cktrini

New Member
Joined
Mar 17, 2011
Messages
2
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,191,200
Messages
5,985,237
Members
439,953
Latest member
suchitha

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
Top