Public Function RemoveNonNumerical(ByVal strText As String) As String
Dim intCounter As Integer
For intCounter = 1 To Len(strText)
If IsNumeric(Mid(strText, intCounter, 1)) Then
RemoveNonNumerical = RemoveNonNumerical & Mid(strText, intCounter, 1))
End If
Next intCounter
End Function