Public Function RemoveNumbers(strTemp As String) As String
Dim intCounter As Integer
Dim intAscii As Integer
For intCounter = 1 To Len(strTemp)
intAscii = Asc(Mid(strTemp, intCounter, 1))
If intAscii < 48 Or intAscii > 57 Then
RemoveNumbers = RemoveNumbers & Chr(intAscii)
End If
Next intCounter
End Function