Substitute and Arrays

Tryllast

New Member
Joined
Apr 19, 2013
Messages
2
What I am trying to do is eliminate all numeric characters from a text string in a cell...

I know the following works but it gets quite large...

assume G2 = 23ea
=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(G2,0,""),1,""),2,""),3,"") all the way up through 9
results in: ea

What I would like to know is can I get something like this to work...

=substitute(g2,{1,2,3,4,5,6,7,8,9,0},"")


would also be open to another method that I am missing that might be a more efficient solution.
 
Last edited:

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Hi and welcome to the forum,

Are the numbers always at the start? If so, maybe:

Code:
=SUBSTITUTE(
     A1,
     LOOKUP(
       9.99999999999999E+307,
       --LEFT(A1, ROW(A$1:INDEX(A:A, LEN(A1))))),
     "")
 
Upvote 0
Thank you for the response, in this case they will always start with numbers but future situations where this would be required may not.
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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