Thread
:
Word: replace ... ... with space
View Single Post
#
2
Don Guillett
Posts: n/a
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.
Reply With Quote