Hello,
Please try this code:
Sub Macro2()
' Macro2 Macro
Selection.GoTo what:=Word.wdGoToPage, which:=Word.wdGoToAbsolute, Count:=2
Dim rng As Range
Set rng = Selection.Range
rng.End = Selection.Bookmarks("\Page").Range.End
rng.Select
rng.Copy
rng.Collapse Word.WdCollapseDirection.wdCollapseEnd
rng.InsertBreak Word.WdBreakType.wdPageBreak
Selection.GoTo what:=Word.wdGoToPage, which:=Word.wdGoToAbsolute, Count:=3
Set rng = Selection.Range
rng.End = Selection.Bookmarks("\Page").Range.End
rng.Select
rng.Paste
End Sub
Please remember to mark the replies as answers if they help and unmark them if they provide no help.