Address Formulas: How to separate ### from an address.

JERRY_MD

New Member
Joined
Oct 27, 2009
Messages
11
How do you separate ### from address. I am trying to parse into rows a full address. Separating the number into a separate column, Street name into a separate column.

Any assistance would be appreciative.
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
The problem is that address come in many different formats. So trying to determine a formula to handle all scenarios may be very tricky (ot maybe not even possible).

However, to handle the most common occurrence, where you have a number follow by the street name, we can devise some formulas to look for the first space and separate everything to the left and right of it.

So, if our address were in cell A1, our two formulas would be:
=LEFT(A1,FIND(" ",A1,1)-1)
and
=RIGHT(A1,LEN(A1)-FIND(" ",A1,1))
 
Upvote 0

Forum statistics

Threads
1,215,432
Messages
6,124,858
Members
449,194
Latest member
HellScout

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