Obtain numeric from alphanumeric string

M

Manj

What is the easy method of obtain numeric from alphanumeric string in an
excel column:-

ab 0.25 I want 0.25
jds 0.125 I want 0.125
 
R

Ron Coderre

With
A1: (text ending with a numeric value)

This formula returns the number at the end of the string:
B1: =MID(A1,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},A1&"0123456789")),99)*1

Does that help?
Post back if you have more questions.
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)
 
M

Mike H

For the 2 examples you gave this would work:-

=MID(A1,FIND(" ",A1,1)+1,LEN(A1))

Mike
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top