With Selection.Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = "[0-9\-\,]{1;}"
.Replacement.Text = ""
.MatchWildcards = True
.Execute
End With
While Selection.Find.Found
txt = Selection()
pos = InStr(txt, ",")
txt1 = Left(txt, pos - 1)
txt2 = Left(Mid(txt, pos + 1) & "000", 3)
Selection = txt1 & " " & txt2
Selection.MoveRight
Selection.Find.Execute
Wend
End Sub