View Single Post
 
Old 12-13-2015, 09:40 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,370
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

This really isn't a job for Find/Replace; rather, it calls for a macro like:
Code:
Sub Demo()
Application.ScreenUpdating = False
Dim strTxt As String, i As Long, j As Long
With Selection
  For i = 1 To .Words.Count
    For j = .Words.Count To i + 1 Step -1
      If .Words(i) = .Words(j) Then
        .Words(j).Delete
      End If
    Next
  Next
End With
Application.ScreenUpdating = True
End Sub
For PC macro installation & usage instructions, see: http://www.gmayor.com/installing_macro.htm
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote