Removing numbers from an address

Lynne1

New Member
Joined
Nov 11, 2010
Messages
28
I want to collect information on particular streets - my information includes the full address complete with the numbers of the residences in the particular streets - how can I remove the numbers?
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
UDF.

Code:
Function RemoveNumber(Str As String) As String

    Application.Volatile
    
    Dim re As Object
    
    Set re = CreateObject("VBScript.RegExp")
    
    With re
        .Global = True
        .Pattern = "\d"
    End With
    
    RemoveNumber = Trim$(re.Replace(Str, vbNullString))

End Function
 
Upvote 0
Not sure of information.........I'm not that proficient?

Do you know of any formula I could use? I did have one, but for the life of me, I can't remember it!
 
Upvote 0
1. Press Alt+F11.
2. Go: Insert -> Module.
3. Paste code I wrote.
4. In cell type in (assuming address in cell A1): =RemoveNumbers(A1).
 
Upvote 0
Wonderbar!!! Thank you so much..........works much better than I remember my formula did originally!!
 
Upvote 0

Forum statistics

Threads
1,224,566
Messages
6,179,551
Members
452,927
Latest member
rows and columns

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