Function ExtractLetters(r As String) As String
With CreateObject("vbscript.regexp")
.Pattern = "[^A-Za-z]"
.Global = True
ExtractLetters = .Replace(r, "")
End With
End Function
Thanks Jacque.....you have been very helpful and fast, but i am not good in VBA. Is there a way with a fromula??