Hi Macropod,
Not sure if I am the problem (surely I am) but I can't get it to work. Can you check the below code?
Thanks,
PHP Code:
Sub macroDeletingDoubleMCQ()
'
' lMacroDeletingDoubleMCQ
'
'
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "Question #[0-9]@ \(ACCCC*\)^13)\1"
.Replacement.Text = "\1"
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = True
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub