Try:
Code:
Sub Demo()
Dim Rng As Range, i As Long
With ActiveDocument.Range
Set Rng = .GoTo(What:=wdGoToPage, Name:=1)
Set Rng = Rng.GoTo(What:=wdGoToBookmark, Name:="\page")
With Rng
.Copy
For i = 1 To 10
.InsertAfter vbCr & Chr(12)
.Collapse wdCollapseEnd
.Paste
Next
End With
Set Rng = .GoTo(What:=wdGoToPage, Name:=5)
Set Rng = Rng.GoTo(What:=wdGoToBookmark, Name:="\page")
With Rng.Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = "Tariq"
.Replacement.Text = "Johnson"
.Format = False
.Forward = True
.Wrap = wdFindStop
.MatchCase = True
.MatchWholeWord = True
.Execute Replace:=wdReplaceAll
End With
End With
End Sub