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 column. Write a sum
function in the last column.

I hope this will help you.

Regards,
Vallinayagam

On Dec 22, 9:07 am, Mahesh <mahender.bi...@gmail.com> wrote:
> Hi Selva,
>
> Which version of MS Excel u r using?
>
> Use ASAP utilities.
>
> 1. Click on Text--->Delete all characters in the selceted cell.
>
> U will get all the employee No.
>
> attached is the sample
>
> On Mon, Dec 21, 2009 at 11:54 PM, Paul Schreiner 
> <schreiner_p...@att.net>wrote:
>
>
>
>
>
> >  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)
> >         If (IsNumeric(Mid(Str, I, 1))) Then
> >             NumStr = NumStr & Mid(Str, I, 1)
> >         End If
> >     Next I
> >     Get_Number = NumStr
> > End Function
>
> > paul
>
> >  ------------------------------
> > *From:* selva jayapal <selvajaya...@gmail.com>
> > *To:* excel-macros@googlegroups.com
> > *Sent:* Mon, December 21, 2009 11:56:32 AM
> > *Subject:* $$Excel-Macros$$ Extracting Numbers from the Text
>
> > Dear All Excel Gurus,
>
> > This is my first mail to this group. I have read many mails from this group
> > which is of great useful to me.
>
> > Currently I am finding a problem in extracting the employee no from the
> > scrambled data.  (Attached reference file)
>
> > What I need is I want to extract out only the employee no which is only
> > numerical value and nine digit number. I couldn’t use formulas like (LEFT,
> > RIGHT or MID) as the count of numbers is not unique.
>
> > I have 200 such data’s to extract. Kindly help me.
>
> > Regards,
>
> > Selva Jayapal
>
> > --
>
> > ---------------------------------------------------------------------------­-------
> > Some important links for excel users:
> > 1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at
> >http://www.excelitems.com
> > 2. Excel tutorials athttp://www.excel-macros.blogspot.com
> > 3. Learn VBA Macros athttp://www.vbamacros.blogspot.com
> > 4. Excel Tips and Tricks athttp://exceldailytip.blogspot.com
>
> > To post to this group, send email to excel-macros@googlegroups.com
> > If you find any spam message in the group, please send an email to:
> > Ayush Jain @ jainayus...@gmail.com or
> > Ashish Jain @ 26may.1...@gmail.com
> > <><><><><><><><><><><><><><><><><><><><><><>
> > HELP US GROW !!
>
> > We reach over 6,500 subscribers worldwide and receive many nice notes about
> > the learning and support from the group. Our goal is to have 10,000
> > subscribers by the end of 2009. Let friends and co-workers know they can
> > subscribe to group at
> >http://groups.google.com/group/excel-macros/subscribe
>
> > --
>
> > ---------------------------------------------------------------------------­-------
> > Some important links for excel users:
> > 1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at
> >http://www.excelitems.com
> > 2. Excel tutorials athttp://www.excel-macros.blogspot.com
> > 3. Learn VBA Macros athttp://www.vbamacros.blogspot.com
> > 4. Excel Tips and Tricks athttp://exceldailytip.blogspot.com
>
> > To post to this group, send email to excel-macros@googlegroups.com
> > If you find any spam message in the group, please send an email to:
> > Ayush Jain @ jainayus...@gmail.com or
> > Ashish Jain @ 26may.1...@gmail.com
> > <><><><><><><><><><><><><><><><><><><><><><>
> > HELP US GROW !!
>
> > We reach over 6,500 subscribers worldwide and receive many nice notes about
> > the learning and support from the group. Our goal is to have 10,000
> > subscribers by the end of 2009. Let friends and co-workers know they can
> > subscribe to group at
> >http://groups.google.com/group/excel-macros/subscribe
>
> --
> With Love,
> Mahesh Bisht
>
>  Emp._No..xls
> 45KViewDownload- Hide quoted text -
>
> - Show quoted text -

-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

We reach over 6,500 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe

Reply via email to