Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Extracting Street Numbers from an Address.

Extracting Street Numbers from an Address

Written by Allen Wyatt (last updated March 9, 2024)

4

Allan has a list of several hundred names and addresses. The street addresses range from Main Street, 123 Main Street, US RT 2, or 187 South Elm St. He would like to break out the street number from the addresses. So the address 123 Main Street would end up with "123" in one cell and "Main Street" in another. If there is no street number, then nothing ends up in the street number column. The Text to Columns tool will not work and he wonders how he can do this.

In a perfect world, Excel would allow you to easily split the numbers from the street names. Since this option doesn't exist, you have a couple of choices. The most time-consuming option involves adding an additional column and retyping the data. If, however, you would like to save some time, you can use a variety of formulas to accomplish the task.

Assuming the list of addresses is in column A (beginning in cell A1), you could use a formula similar to the following to pull out the numeric portion of the address:

=IF(ISERROR(VALUE(LEFT(A1,1))),"",LEFT(A1,FIND(" ",A1)-1))

Assuming you put the formula in cell B1, you could then use a different formula to derive the non-numeric portion of the address:

=TRIM(RIGHT(A1,LEN(A1)-LEN(B1)))

Note that this approach does have a limitation. Some addresses, especially in major metropolitan areas, use a format such as 152-33 Bell Blvd. The formulas above will work for these addresses, but if the alternative, 152 33 Bell Blvd., is used, the formula will parse incorrectly. Unless you want to buy a professionally developed address parsing program, the formulas above and a quick eyeball scan of the results should be adequate.

Another formula works in this case. Assuming your address is in cell A2, enter the following formula into cell B2:

=IF(ISNUMBER(VALUE(LEFT(A2,1))),VALUE(LEFT(A2,FIND(" ",A2)-1)),"")

This formula is saying, "If the first character is not a number, leave the cell blank. Otherwise, give me all of the characters on the left out to, but not including, the first space." You can then use the result of this formula to pull out the non-numeric portion of the address:

=IF(B2="",A2,MID(A2,FIND(" ",A2)+1,99))

Finally, the following macro can be used to break-out the street address from the street name.

Sub GetStreetNum()
    Dim sStreet As String
    Dim J As Integer
    Dim iNum As Integer

    For Each cell In Selection
        sStreet = cell.Value
        J = InStr(sStreet, " ")
        If J > 0 Then
            iNum = Val(Left(sStreet, J))
            If iNum > 0 Then
                cell.Offset(0, 1).Value = iNum
                sStreet = Trim(Mid(sStreet, J, Len(sStreet)))
            End If
        End If
        cell.Offset(0, 2).Value = sStreet
    Next
End Sub

To use this macro, simply select the range of cells that contain your addresses and then run it. The leading numeric portion of the address will appear in the cell to the right of each address and the balance of the address will be placed in the cell to the right of that. (So you should make sure that there are two blank columns to the right of the addresses you select.)

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (8031) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Extracting Street Numbers from an Address.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Removing Protection from a Protected Workbook

Excel provides built-in capabilities to protect your workbook files. If you apply these capabilities, it is possible that ...

Discover More

Struggling with New Changes to Track Changes

In the latest versions of Microsoft 365, the company has introduced an entirely new way to deal with markup comments. ...

Discover More

Making Modal Dialog Boxes Appear in Front of Workbooks

Perhaps the most common way of communicating with programs is through the use of dialog boxes. We expect dialog boxes to ...

Discover More

Best-Selling VBA Tutorial for Beginners Take your Excel knowledge to the next level. With a little background in VBA programming, you can go well beyond basic spreadsheets and functions. Use macros to reduce errors, save time, and integrate with other Microsoft applications. Fully updated for the latest version of Office 365. Check out Microsoft 365 Excel VBA Programming For Dummies today!

More ExcelTips (ribbon)

Dealing with Circular References

Circular references occur when a formula includes a reference to the cell in which the formula appears. Here's how you ...

Discover More

Solving a Quadratic Equation

One of the staples of high school algebra classes is the quadratic equation. If you need to solve such equations in ...

Discover More

Indirectly Referencing a Cell on a Different Worksheet

Excel includes the powerful INDIRECT function which can be used to assemble references to other cells in your workbook. ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is four more than 7?

2024-03-10 22:33:36

Peter

Since the fig does not seem to have loaded, the following is a plain text version, starting in cell A1nPattern FormulaText Address: 222/123 32nd Avenuen\d*\s =TRIM(RegExpExtract(D1,A2,1)) Number: 123n\s\w.* =TRIM(RegExpExtract(D1, A3,1)) Street: 32nd Avenue


2024-03-10 22:27:26

Peter

I played around with regular expressions to break down an address like 22/123 32nd Avenue. nVBA provides CreateObject("VBScript.RegExp"). I googled and found the proprietary site https://www.ablebits.com/office-addins-blog/excel-regex-formulas/ which has a free download. nTo get the street number and street name in two cells requires two references to their RegExpExtract(). If I could figure out one pattern that covers both, I would only need one since it can return an array.n[{Fig}]


2024-03-09 16:03:06

J. Woolley

My Excel Toolbox includes the following functions that are useful for manipulating the text described in this Tip:n    =Between(Text, BeginAfter, EndBefore, [CaseSensitive], [Direction])n    =IsLike(Text, Pattern)nBetween(...) is like a combination of TEXTBEFORE and TEXTAFTER.nIsLike(...) uses VBA's Like operator as follows:nnFunction IsLike(Text As String, Pattern As String) As Booleann    IsLike = Text Like PatternnEnd FunctionnnThe following formulas produce the same results as Alex Blakenburg's formulas but do not require MS365 or O2021 (i.e., Excel 2021+):n    =IF(IsLike(A1,"#*"),Between(A1,""," "),"")n    =IF(B1="",A1,Between(A1," ",""))nHere is a simpler version of the last formula above:n    =TRIM(Between(A1,B1,""))nSee https://sites.google.com/view/MyExcelToolbox/


2024-03-09 06:33:33

Alex Blakenburg

Converting those to MS365 or O2021 TextBefore & TextAfter gives,n=IF(ISERROR(VALUE(LEFT(A1,1))),"",TEXTBEFORE(A1," "))n=IF(B1="",A1,TEXTAFTER(A1," "))


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.