PDF download Download Article
Copy a page one or more times in Microsoft Word
PDF download Download Article

Is there a page in your Word document that you need to replicate? Whether you want to add a duplicate page to the same document or a new one, making an exact copy of a page in your Word document is super easy. You can even create multiple duplicates automatically by creating a simple Word macro. This wikiHow guide will teach you how to duplicate any page in your Word document, including pages with headers and footers.

How to Duplicate a Page in Microsoft Word

  • If the page you want to duplicate doesn't have a header or footer, you can copy the page's contents and paste it into a new page.
  • If you want to duplicate a page with a header or footer, you'll have to insert a continuous line break before copying.
  • If you want to duplicate multiple pages or a single page multiple times, you can create a simple Word macro.
Method 1
Method 1 of 4:

Duplicate a Page in the Same Document

PDF download Download Article
  1. To duplicate everything on the current page, drag your mouse cursor from the beginning of the page to the end. [1]
    • If your Word document only contains one page, you can press Ctrl + A (PC) or Cmd + A (Mac) to instantly select all of the content in the entire document.
    • If you want to duplicate multiple consecutive pages, highlight the content on all the pages. They'll all duplicate in order using this method.
    • Does the page you want to copy have a unique header and/or footer that only appears on that page? If you also want to duplicate the header and/or footer, use this method instead.
  2. This copies the selection to your clipboard.
    Advertisement
  3. You can skip this step if you already have a blank page in your document. Otherwise:
    • Click the mouse cursor at the end of the page before the place you want to insert the new page. For example, if you want the duplicate page to appear on page 3, click the mouse cursor after the final character on page 2.
    • Click the Insert tab.
    • Click Blank Page . If you don't see this option, click Pages at the top-left corner first.
  4. This places the cursor in that position.
  5. There are two ways you can do this:
    • If you want to keep the original formatting of the duplicated page, including tables and special fonts, press Ctrl + V (PC) or ⌘ Cmd + V (Mac).
    • If you want the copied content to inherit the standard formatting of the new page (for example—if the original content contains special fonts and characters and you'd rather use your document's normal formatting on the duplicate page), right-click or Ctrl + click the new page. Then, on a PC, click the second icon under "Paste options" (the icon with the arrow). On a Mac, click Paste Special... , select Unformatted Text , and then click OK .
  6. Advertisement
Method 2
Method 2 of 4:

Duplicate a Page into a New Document

PDF download Download Article
  1. To duplicate everything on the current page, drag your mouse cursor from the beginning of the page to the end. [2]
    • If your page has a header and/or footer that you want to include in the new document, use this method instead.
  2. This copies the selection to your clipboard.
  3. You can now duplicate the copied page into an existing document or a new blank file.
    • To open a new document, click File , select Open , and then choose the document you want to edit.
    • To create a new document, click File , select New , then choose Blank Document .
  4. If you're working in an existing document and don't have a blank page yet, you can easily insert one now. To do so:
    • Click the mouse cursor at the end of the page before the place you want to insert the new page. For example, if you want the new page to appear after the current page 3, click the mouse cursor after the last character on page 3.
    • Click the Insert tab.
    • Click Blank Page . If you don't see this option, click Pages at the top-left corner first.
  5. This places the cursor in that position.
  6. There are two ways you can do this:
    • If you want to keep the original formatting of the duplicated page, including tables and special fonts, press Ctrl + V (PC) or ⌘ Cmd + V (Mac).
    • If you want the copied content to inherit the standard formatting of the new page (for example—if the original content contains special fonts and characters and you'd rather use your document's normal formatting on the duplicate page), right-click or Ctrl + click the new page. Then, on a PC, click the second icon under "Paste options" (the icon with the arrow). On a Mac, select Paste Special... , click Unformatted Text , and then click OK .
  7. Advertisement
Method 3
Method 3 of 4:

Duplicate a Page with Header & Footer

PDF download Download Article
  1. You'll see this icon at the top of Word on the Home tab. This displays all paragraph marks and formatting symbols on the page.
    • Use this method if the page you want to duplicate has a header or footer you want to include in a new document or page.
  2. You'll want to place the cursor after the final character on the page.
  3. It's at the top of Word.
    • This tab is called Page Layout in some versions.
  4. It's in the toolbar at the top of Word.
  5. This adds a section break at the location where you placed the cursor.
  6. Place the cursor at the top of the page, then click and drag all the way to the bottom of the page—make sure you include the "Section Break (Continuous)" tag at the bottom of your selection.
  7. This copies the selection to your clipboard.
  8. You can now duplicate the copied page into an existing document or a new blank file.
    • To open a new document, click File , select Open , and then choose the document you want to edit.
    • To create a new document, click File , select New , then choose Blank Document .
  9. If you're working in an existing document and don't have a blank page yet, you can easily insert one now. To do so:
    • Click the mouse cursor at the end of the page before the place you want to insert the new page. For example, if you want the new page to appear after the current page 3, click the mouse cursor after the last character on page 3.
    • Click the Insert tab.
    • Click Blank Page . If you don't see this option, click Pages at the top-left corner first.
  10. The contents of the copied page, including its header and footer, now appear on the new page.
  11. Here's how:
    • On the original page, click the mouse just before the "Section Break (Continuous)" tag. [3]
    • Press the delete key on the keyboard.
    • Click the Home tab.
    • Click the icon to hide paragraph symbols and formatting.
  12. Advertisement
Method 4
Method 4 of 4:

Duplicate a Page Multiple Times with a Macro

PDF download Download Article
  1. If you want to quickly duplicate a page in any document multiple times without copying and pasting, you can create a macro that does the hard work for you. This is useful if you need to duplicate pages in multiple documents and would rather use a shortcut instead of copying and pasting manually.
  2. It's at the top-right corner.
  3. From the "Macros in" menu, choose where you'd like to create this macro.
    • To make the macro available in all new documents that you don't create with a template , select the Normal.dotm . [4]
    • To make the macro available in all documents on this computer using any template, select All active templates and documents .
  4. Call the macro Duplicate or similar to keep the tool recognizable. Just make sure there's no space in the macro name. Once you click Create , the Visual Basic macro editor will appear.
  5. Type or paste this code between the " Sub Duplicate() and End Sub tags:
     Page 
     = 
     InputBox 
     ( 
     "Page number to duplicate" 
     ) 
     Count 
     = 
     InputBox 
     ( 
     "How many times to duplicate?" 
     ) 
     With 
     Selection 
     . 
     GoTo 
     wdGoToPage 
     , 
     wdGoToAbsolute 
     , 
     Page 
     . 
     Bookmarks 
     ( 
     "\Page" 
     ). 
     Range 
     . 
     Copy 
     For 
     i 
     = 
     1 
     To 
     Count 
     : 
     . 
     Paste 
     : 
     Next 
     End 
     With 
    
  6. You'll see it at the top-left corner of the macro editor. You can now also close the VB editor.
  7. Running the macro from any document is easy:
    • Click where you'd like to insert the duplicated pages.
    • Click Macros on the View tab.
    • Select your macro and click Run .
    • Type the page number you want to duplicate and click OK .
    • Type how many times to duplicate the page and click OK .
  8. If you want quicker access to the macro you've created, it's easy to add it to the toolbar:
    • Click the File menu and select Options .
    • Click Customize Ribbon .
    • Click Macros under "Choose commands from."
    • Select your macro
    • Click New Group , select Rename , and type a name for your group.
    • Click Add and select an image for your macro.
    • Click OK twice to save and exit.
  9. Advertisement


Expert Q&A

Ask a Question
      Advertisement

      Video

      Tips

      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Thanks for submitting a tip for review!

      About This Article

      Thanks to all authors for creating a page that has been read 123,329 times.

      Is this article up to date?

      Advertisement