Public Function GetText(ByVal strText As String) As String
Dim strTemp As String
Dim bytCounter As Byte
For bytCounter = 1 To Len(strTemp)
If Not IsNumeric(Mid(strTemp, bytCounter, 1) Then
strTemp = strTemp & Mid(strTemp, bytCounter, 1)
End If
Next bytCounter
End Function