Try this:

Function Extract10(strCellValue as String) as String

Dim x as Long

x = 0

Do
x = x + 1
If IsNumeric(Mid(strCellValue, x, 10)) Then
Extract10 = Mid(strCellValue, x, 10)
Exit Do
End If
Loop Until x + 10 = Len(strCellValue)

End Sub

"R. Choate" wrote:

> They are all over the place. A stupid data entry person enters everything randomly. The numbers could be anywhere in the string,
> otherwise I would just look for the delimiter. That would be easy. The only constant is that it is always 10 digits...somewhere in
> the string.
> --
> RMC,CPA
>
>
> "Toppers" <Toppers@discussions.microsoft.com> wrote in message news:02E8F4D4-4361-4505-AE87-7B7E23A120BD@microsoft.com...
> Richard,
> How are the (numeric) strings delimited e.g. 1234,abc,123456?
>
> "R. Choate" wrote:
>
> > I need to find and extract a 10 digit number from a string which might contain more than one numeric string, but there would only
> > be
> > one string of that length. I'm going to have to find out how to do this and then loop through a long list and extract that number
> > and place it in the first cell to the right (column B). I've been at this all morning. I'm out of ideas. Surely there is an easy
> > way
> > to do this that I'm just not thinking of. Help !
> >
> > Thanks in advance !
> >
> > Richard
> > --
> > RMC,CPA
> >
> >
> >
> >

>
>
>