Removing numbers from an excel cell, keep text

bendarrington

New Member
Joined
Oct 23, 2013
Messages
1
I want to remove the numbers from an excel cell but keep the text.

I have a excel sheet full of street addresses but I just want the street names, not the full address.

Is there a formula to do this?

Thanks.
 

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.
Hi and welcome to the board.

In future it would be helpful if you could post a small sample of your data. ;)

Assuming that the addresses are only street names with preceding numbers, perhaps;

Excel 2010
AB
1Street AddressStreet
25 The StreetThe Street
326 Some AvenueSome Avenue
418 RoadXRoadX
Sheet1
Cell Formulas
RangeFormula
B2=TRIM(SUBSTITUTE(A2,LOOKUP(10^308,--LEFT(A2,{1;2;3;4;5;6})),""))
 
Upvote 0
Another possibility, assuming all your addresses start with a number and are separated from the rest of the address by a space...

=MID(A2,FIND(" ",A2&" ")+1,99)
 
Upvote 0

Forum statistics

Threads
1,216,095
Messages
6,128,795
Members
449,468
Latest member
AGreen17

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