Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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&"01234 56789")),99)*1 Does that help? Post back if you have more questions. -------------------------- Regards, Ron Microsoft MVP (Excel) (XL2003, Win XP) "Manj" wrote in message ... 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 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
For the 2 examples you gave this would work:-
=MID(A1,FIND(" ",A1,1)+1,LEN(A1)) Mike "Manj" wrote: 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 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
an afterthought
=MID(A1,FIND(" ",A1,1)+1,LEN(A1))*1 Mike "Manj" wrote: 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VLOOKUP with numeric and alphanumeric values | Excel Discussion (Misc queries) | |||
Need to test for alphanumeric value and write numeric values to ce | Excel Worksheet Functions | |||
Extract numeric part of alphanumeric cell | Excel Worksheet Functions | |||
How do I replace last numeric string from a alphanumeric string? | Excel Discussion (Misc queries) | |||
Converting Alphanumeric numbers to Numeric | Excel Worksheet Functions |