Remove numbers from cells with text

teicfcl

New Member
Joined
Nov 7, 2009
Messages
5
Hi,

I have copied information from an outside source to Excel. Unfortunately, the information includes numbers preceding the text which I need to delete for all records. Is there an easier way of deleting this information without going to each individual cell to delete the numbers?

Your assistance with this issue is greatly appreciated.

Thank you,
teicfcl
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Hello,


I have column A with 3021 rows, where there are numbers and text like this: 26,33,Cosmetice/Ingrijire Piele,62


I need to delete the numbers and the comma, and keep the text.


Is that possible?


Thank you
 
Upvote 0
Hello,


I have column A with 3021 rows, where there are numbers and text like this: 26,33,Cosmetice/Ingrijire Piele,62


I need to delete the numbers and the comma, and keep the text.


Is that possible?


Thank you

All you have to do is 10 simple replacement actions giving each time a different number from 0-9 ... to be replaced by ...nothing. Just remember that there are brands that have numbers like B52 for example. Then you can replace , with nothing also , or / with nothing and you have youe job done.
 
Upvote 0
All you have to do is 10 simple replacement actions giving each time a different number from 0-9 ... to be replaced by ...nothing. Just remember that there are brands that have numbers like B52 for example. Then you can replace , with nothing also , or / with nothing and you have youe job done.

This is an old thread...and I'm a new member, but I just had to make an account thanking SimosStavrakidis. Such an easy solution!! It took a maximum of 30 seconds to accomplish this.
 
Upvote 0
I know its old, but it might help someone in the future:

Code:
=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,"1",""),"2",""),"3",""),"4",""),"5",""),"6",""),"7",""),"8",""),"9",""),"0","")

Just replace A1 with the cell you want to clear numbers from. You can also add further nested SUBSTITUTE terms to remove other unwanted characters.
 
Upvote 0
All you have to do is 10 simple replacement actions giving each time a different number from 0-9 ... to be replaced by ...nothing. Just remember that there are brands that have numbers like B52 for example. Then you can replace , with nothing also , or / with nothing and you have youe job done.

3 years since your post and I too signed up only to say thanks! Best 30 seconds of my life :cool:
 
Upvote 0

Forum statistics

Threads
1,214,515
Messages
6,119,973
Members
448,933
Latest member
Bluedbw

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