Remover parágrafo Contendo palavras específicas (palavra vba)

Peço desculpas por não ter um programa para mostrar para a minha pergunta, mas estou com sérios problemas.

Estou procurando um programa de palavras vba que procure por palavras específicas e exclua o parágrafo em que essas palavras estão.

O objetivo deste exercício é reduzir a carga de trabalho, pois estou usando até 1 milhão de palavras em texto.

EDITAR

Eu criei o programa, você poderia me ajudar a adicionar um loop, para percorrer todo o documento?

Sub SelectRangeBetween()


    Selection.HomeKey Unit:=wdStory
    'Selection.TypeText Text:="hello"

     ' The Real script
    Dim myrange As Range
    Selection.HomeKey wdStory
    Selection.Find.ClearFormatting
    With Selection.Find
        .Execute findtext:="From: [email protected]", Forward:=True, Wrap:=wdFindStop 'this will initiate the start word
        Set myrange = Selection.Range
        myrange.End = ActiveDocument.Range.End
        myrange.Start = myrange.Start
        myrange.End = myrange.End + InStr(myrange, "This message has been scanned ") ' this will initiate the end word
        myrange.Select

        'Selection.Delete
    End With
End Sub

questionAnswers(1)

yourAnswerToTheQuestion