Public Function ReplaceSpecial(varInput As Variant) As Variant
Dim strString As String
Dim x As Integer
For x = 1 To Len(varInput)
Select Case Asc(Mid(varInput, x, 1))
Case 32, 47 To 57, 65 To 90, 97 To 122
strString = strString & Mid(varInput, x, 1)
End Select
Next x
ReplaceSpecial = strString
End Function