coolsac12 Member Jan 13, 2016 #1 Hi All, I want to extract only number from a cell which have alphanumeric values. Please advise how can I do that. OR Please extract numbers in other cell and alphabets in another cell. Thanks & regards, Sachin Gupta Attachments Extract_Number.xlsx 8.7 KB · Views: 8
Hi All, I want to extract only number from a cell which have alphanumeric values. Please advise how can I do that. OR Please extract numbers in other cell and alphabets in another cell. Thanks & regards, Sachin Gupta
oldchippy Active Member Jan 13, 2016 #3 If you also want the alphabets in another cell - assuming just one each end =LEFT(D2,1)&RIGHT(D2,1)
Asheesh Excel Ninja Jan 13, 2016 #4 Sachin, Put the below in E2 and drag it down... LOOKUP(9^9,--MID(D2,MIN(IFERROR(FIND(ROW($1:$10)-1,D2),"")),ROW(INDIRECT("1:"&LEN(D2))))) To be acknowledged with CSE
Sachin, Put the below in E2 and drag it down... LOOKUP(9^9,--MID(D2,MIN(IFERROR(FIND(ROW($1:$10)-1,D2),"")),ROW(INDIRECT("1:"&LEN(D2))))) To be acknowledged with CSE
mohadin Active Member Jan 13, 2016 #7 if you please see the attached tel me about the Idea? thanks Attachments Extract_Number.xlsm 17.7 KB · Views: 6
Asheesh Excel Ninja Jan 13, 2016 #8 What do you want to know...can you please explain Last edited: Jan 13, 2016
Asheesh Excel Ninja Jan 13, 2016 #9 If you just want to extract the remaining text...use the below in K2 (as per your attached) SUBSTITUTE(D2,H2,"")
If you just want to extract the remaining text...use the below in K2 (as per your attached) SUBSTITUTE(D2,H2,"")
Khalid NGO Excel Ninja Jan 14, 2016 #10 Hi Sachin, I have noticed you have just 3 type of text ["D","R","-"] You can try the following also: =--SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(UPPER(D2),"D",""),"R",""),"-","") If you have more strings, go with above solutions. Regards,
Hi Sachin, I have noticed you have just 3 type of text ["D","R","-"] You can try the following also: =--SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(UPPER(D2),"D",""),"R",""),"-","") If you have more strings, go with above solutions. Regards,
coolsac12 Member Jan 14, 2016 #11 Khalid NGO said: Hi Sachin, I have noticed you have just 3 type of text ["D","R","-"] You can try the following also: =--SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(UPPER(D2),"D",""),"R",""),"-","") If you have more strings, go with above solutions. Regards, Click to expand... Thanks @Khalid NGO , Its nice...
Khalid NGO said: Hi Sachin, I have noticed you have just 3 type of text ["D","R","-"] You can try the following also: =--SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(UPPER(D2),"D",""),"R",""),"-","") If you have more strings, go with above solutions. Regards, Click to expand... Thanks @Khalid NGO , Its nice...