View Single Post
  #2   Report Post  
Don Guillett
 
Posts: n/a
Default

try
Sub replaceit()
For Each c In Selection
c.Value = Application.Substitute(c, ".", "")
Next
End Sub


--
Don Guillett
SalesAid Software

"Birdtoes" wrote in message
...
For Word - I need to replace the following: ... ... with one space. I

have
a lot of these ... ... 's throughout a document and they all need to be
replaced by one space. How do I do this with "search and replace?"

Because
nothing I do seems to work.