Give this function, which can be used as a UDF (user defined function) if needed...What is the best way to remove puncuation from a string of delimited text?
Function NoPunctuation(ByVal S As String) As String
Dim X As Long
For X = 1 To Len(S)
If Mid(S, X, 1) Like "[!A-Za-z0-9]" Then Mid(S, X) = " "
Next
NoPunctuation = Replace(S, " ", "")
End Function