Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Using Excel 2003...
I have a worksheet with three columns. -In the first column I have data containg a name and position #. For example, Joey Doe 01199. -In the second column I would like to extra only the numerical values. How can I do this? For the example above I would like to extract 01199. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=MID(A1,MIN(SEARCH({0,1,2,3,4,5,6,7,8,9},A1&"01234 56789")),SUMPRODUCT(LEN(A1)-LEN(SUBSTITUTE(A1,{0,1,2,3,4,5,6,7,8,9},""))))
-- __________________________________ HTH Bob "Dave" wrote in message ... Using Excel 2003... I have a worksheet with three columns. -In the first column I have data containg a name and position #. For example, Joey Doe 01199. -In the second column I would like to extra only the numerical values. How can I do this? For the example above I would like to extract 01199. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
if your data is always the same with 5 numbers after the name, you can use
=RIGHT(B2,5) -- Hope this is helpful Appreciate that you provide your feedback by clicking the Yes button below if this post have helped you. Thank You cheers, francis "Dave" wrote: Using Excel 2003... I have a worksheet with three columns. -In the first column I have data containg a name and position #. For example, Joey Doe 01199. -In the second column I would like to extra only the numerical values. How can I do this? For the example above I would like to extract 01199. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
is there a quick easy way to input time? | Excel Worksheet Functions | |||
Is there a quick/easy way to get excel to replace ALL forumulas the numerical result in one step? | Excel Discussion (Misc queries) | |||
Quick and easy labeling | Excel Discussion (Misc queries) | |||
Quick and easy | Excel Worksheet Functions | |||
new user with easy question? not easy for me | New Users to Excel |