Avatar of daisypetals313
daisypetals313
Flag for United States of America asked on

Modification of formula that copies only letters and not numbers

The below array formula copies only the letters from a cell and ignores the numbers, however, it only seems to work when the cell starts with a letter.  How would I update the below to work if the cell starts with a number?

=LEFT(A1,IF(MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},A1&"0 123456789"))>LEN(A1),0,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},A1&"0123456789")))-1)
Microsoft Excel

Avatar of undefined
Last Comment
daisypetals313

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
Professor J

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
daisypetals313

ASKER
This worked great!  I used your formula:

=SUBSTITUTE(SUBSTITUTE( SUBSTITUTE( SUBSTITUTE( SUBSTITUTE(SUBSTITUTE( SUBSTITUTE( SUBSTITUTE( SUBSTITUTE( SUBSTITUTE(A1,"1",""),"2",""), "3",""),"4",""),"5",""), "6",""),"7",""),"8",""),"9",""),"0","")
Your help has saved me hundreds of hours of internet surfing.
fblack61