Word: replace ... ... with space

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
try
Sub replaceit()
For Each c In Selection
c.Value = Application.Substitute(c, ".", "")
Next
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top