How to Duplicate a Page in Word
How to Duplicate a Page in Word GA S REGULAR Menu Lifewire Tech for Humans Newsletter! Search Close GO Software & Apps > MS Office
Count = InputBox("Enter Number of times to duplicate")
With Selection
.GoTo wdGoToPage, wdGoToAbsolute, Page
.Bookmarks("\Page").Range.Copy
For i = 1 To Count: .Paste: Next
End With
Select the save icon and close the code window. Back in the document window, select View > Macro > View Macros. In the Macros window, select Run to initiate the macro. The script will ask what page to duplicate, and how many times to duplicate it. This script will duplicate the page you've selected the number of times you've selected. The duplicate pages will be appended at the end of the document.
How to Duplicate a Page in Word
Ways to easily copy a page in Word
By Ryan Dube Ryan Dube Writer University of Maine Ryan Dube is a freelance contributor to Lifewire and former Managing Editor of MakeUseOf, senior IT Analyst, and an automation engineer. lifewire's editorial guidelines Updated on October 27, 2021 Tweet Share Email Tweet Share Email MS Office Word Excel Powerpoint OutlookWhat to Know
Highlight all the text on the page you want to duplicate including blank lines. Press Ctrl+C to copy.Select Insert > Blank Page to add a page at the end of the document.Place the cursor at the top of the blank page or wherever else you want the duplicate to appear in the document. Press Ctrl+V. This article explains how to duplicate a single page in a Microsoft Word document. It also includes information on how to make a macro in Word for duplicating several pages and how to use a PDF editor to duplicate a page.How to Duplicate a Single Page in Word
When you want to duplicate one page in Microsoft Word and place it somewhere in the same document or another document, use this copy and paste process: Using the mouse, highlight all of the text in the page you want to duplicate. If there are blank spaces at the end of the page, make sure to highlight those as well. Press Ctrl+C to copy the highlighted text on the page. Select Insert > Blank Page. This will add a blank page to the end of your Word document. Now, place the cursor in the document where you want the duplicated page to go. For example, if you want the duplicated page to become the second page of the document, place the mouse cursor at the top of the second page and press Ctrl+V to paste the page. This will insert the duplicated page into the second page of the document, and push the second page over to the third page. If you prefer to paste the duplicated page at the end, just place the cursor at the top of the blank page and press Ctrl+V.How to Duplicate a Page in Word Using Macros
If you need to duplicate more than one page in Word, you can automate the process by creating a macro in Word. Using a macro like this for multiple duplicate pages is perfect for a document where you've created a form or some templatized document you need to duplicate across many multiple pages. With the word document containing the page you want to duplicate open, select View > Macros > View Macros. In the Macros window, type the name of the macro and select Create. In the code window, paste the following code: Page = InputBox("Enter the Page to Duplicate")Count = InputBox("Enter Number of times to duplicate")
With Selection
.GoTo wdGoToPage, wdGoToAbsolute, Page
.Bookmarks("\Page").Range.Copy
For i = 1 To Count: .Paste: Next
End With
Select the save icon and close the code window. Back in the document window, select View > Macro > View Macros. In the Macros window, select Run to initiate the macro. The script will ask what page to duplicate, and how many times to duplicate it. This script will duplicate the page you've selected the number of times you've selected. The duplicate pages will be appended at the end of the document.