Try:
Code:
Sub DeletePriorAuditResults()
Application.ScreenUpdating = False
With ActiveDocument.Range
With .Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = "^pPrior Audit Results^p"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.Execute
End With
If .Find.Found = True Then
.MoveEnd wdTable, 1
.MoveEnd wdParagraph, 1
.Text = vbNullString
End If
End With
Application.ScreenUpdating = True
End Sub