I have written a function that extracts a numeric string from a passed in string.
Function getNumber(strIN As String) As Integer
Dim strOut As String
Dim i As Integer
Dim sLen As Integer
strOut = ""
For i = 1 To Len(strIN)
If IsNumeric(Mid(strIN, i, 1)) Then
strOut = strOut &...