To leave just the numeric portion of a strong, you could try this:
Function removeit(thestuff As String) As String
'*******************************************
'Name: removeit (Function)
'Purpose: Remove all non-numeric characters from a string
'*******************************************
Dim strhold As String, intLen As Integer, n As Integer
strhold = RTrim(thestuff)
intLen = Len(strhold)
strhold = ""
For n = 1 To intLen
strhold = strhold & IIf(IsNumeric(Mid(thestuff, n, 1)), Mid(thestuff, n, 1), "")
Next n
removeit = strhold
End Function
Conversely, to remove the numeric, leaving just the alpha, change this line:
IIf(IsNumeric(Mid(thestuff, n, 1)), Mid(thestuff, n, 1), "")
to this
IIf(Not IsNumeric(Mid(thestuff, n, 1)), Mid(thestuff, n, 1), "")