• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Extract only text

Good day Kcprakash

You seem to want all the work doing for you with out you having to do any thing, this question as been asked again and again one of the most asked question one of the most answerd with various ways to achive what you want.
If you put a small amount of effort in to looking and searching the forum you will find what you need.
 
Very cumbersome, but using the "big sledgehammer" approach, you could do this if it's a XL 2007+ file:
=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE( SUBSTITUTE( SUBSTITUTE( SUBSTITUTE( SUBSTITUTE( SUBSTITUTE( SUBSTITUTE( SUBSTITUTE(A1,"1",""),"2",""), "3",""),"4",""),"5",""), "6",""),"7",""),"8",""),"9",""),"0","")
 
@Luke M
Hi!
What a pity that this array formula doesn't work! Why is Excel so weird sometimes?
=SUBSTITUTE(A1,ROW(1:10)-1,"")
Regards!
 
Very cumbersome, but using the "big sledgehammer" approach, you could do this if it's a XL 2007+ file:
=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE( SUBSTITUTE( SUBSTITUTE( SUBSTITUTE( SUBSTITUTE( SUBSTITUTE( SUBSTITUTE( SUBSTITUTE(A1,"1",""),"2",""), "3",""),"4",""),"5",""), "6",""),"7",""),"8",""),"9",""),"0","")


HAHAHAHHAHAHAHA
 
Without using VBA or UDF has anyone found a better way than using nested substitutes? It does the job, but I believe there must be a better way.

I have also tried the following, but this only returns the first character:
{=CONCATENATE(IF(ISNUMBER(MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1)*1),"",MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1)))}
 
Back
Top