Re: $$Excel-Macros$$ Extracting Numbers from the Text

2010-01-27 Thread santosh bahuguna
s.com [mailto: > excel-mac...@googlegroups.com] *On Behalf Of *Paul Schreiner > *Sent:* 21 December 2009 23:55 > > *To:* excel-macros@googlegroups.com > *Subject:* Re: $$Excel-Macros$$ Extracting Numbers from the Text > > > > Selva, > > I couldn't find a simple

RE: $$Excel-Macros$$ Extracting Numbers from the Text

2009-12-22 Thread selva jayapal
:* excel-macros@googlegroups.com *Subject:* Re: $$Excel-Macros$$ Extracting Numbers from the Text Selva, I couldn't find a simple way to "find" the numbers using standard Excel functions, so I created a function called Get_Number() It will extract only the numbers from the string.

Re: $$Excel-Macros$$ Extracting Numbers from the Text

2009-12-21 Thread nayag...@gmail.com
Hi Selva, Step 1: Separte the numbers using Text to column using "Space" as delimiter Step 2: Select Edit\Go to\ and click special and select constants and unselct the check box Numbers below the formulas options Step 3: Delete the selected cells You have got only the numbers, but in different

Re: $$Excel-Macros$$ Extracting Numbers from the Text

2009-12-21 Thread Paul Schreiner
Selva, I couldn't find a simple way to "find" the numbers using standard Excel functions, so I created a function called Get_Number() It will extract only the numbers from the string. take a look. Public Function Get_Number(Str)     Dim I, NumStr     NumStr = ""     For I = 1 To Len(Str)