So where is your macro?
Code:
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey, http://gregmaxey.com/word_tips.html, 9/21/2018
Dim oRng As Word.Range
Set oRng = ActiveDocument.Sections(2).Range
With oRng.Find
.Text = "Test"
While .Execute
oRng.Select
Wend
End With
lbl_Exit:
Exit Sub
End Sub