Hi Derek,
You're not missing anything, other than the part in the web page that
says "Repeat until nothing is found, to delete all duplicate
paragraphs in the document". The recorder isn't capable of creating a
macro that loops, so you have to add that to the code manually. Change
the line
Selection.Find.Execute Replace:=wdReplaceAll
to
Do While Selection.Find.Execute(Replace:=wdReplaceAll)
Loop
--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.