>
Software

Word still won’t duplicate a page, so here’s what actually works

Word does not have a “Duplicate Page” button. Anyone who tells you otherwise is selling something. The closest thing is a series of workarounds that range from “select and copy” (the obvious approach) to a VBA Macro (a short script that automates Word using Visual Basic for Applications) that does the job in one click. After 12 years of writing Word docs the long way, I have settled on a small set of patterns I trust. None of them are perfect. Two of them will save you an afternoon.

I write a lot of Word documents: project briefs, client contracts, runbooks (step-by-step operational guides), and the occasional slide deck converted to a Word outline for editing. The “duplicate this page” need comes up most often when I am reusing a template, repeating a section header across multiple chapters, or rebuilding a doc after a client moved a paragraph and broke the page breaks. Each of those situations has a faster path than the obvious one.

Why Word does not have a one-click duplicate

Word treats a document as a single stream of content that flows from one page to the next. The “page” is not a structural object the way a slide is in PowerPoint or a sheet is in Excel. Word only knows about pages when it goes to print or render the layout, and even then, the boundary between page 3 and page 4 is a calculation, not a stored element.

This is why the obvious workaround works. You select the content of the page you want to duplicate, copy it, insert a blank page, and paste. Word re-flows the result, and you get a second copy of the page. The catch is that page breaks (the marks that tell Word “start a new page here”) are not always where you think they are. A “page” in your mental model can span what Word considers two pages after you paste, especially if the original page had a heading that pushed a line to the next page.

The single-page method (the one most people actually need)

If you are working with a one-page document or you only need to duplicate a single page from a longer document, the manual approach is fine. The trick is to select precisely the content of the page you want, not the whole document.

The recipe that has worked for me across hundreds of documents:

  • Place your cursor at the very start of the page you want to duplicate.
  • Hold Shift and click at the very end of the same page. The exact end point is the character just before the page break.
  • Press Ctrl+C (Cmd+C on Mac) to copy.
  • Place the cursor at the start of the next page (the one that will receive the duplicate).
  • Insert a blank page from the Insert tab. In Word 365 it is Insert > Pages > Blank Page.
  • Press Ctrl+V to paste.

The selection is the hard part. If you select one character too few, you lose the last line. If you select one character too many, you pull in the first line of the next page. Most people Ctrl+A the whole document and then wonder why the paste explodes the layout. Do not do that. The Shift+click approach is precise and survives a Word restart, because Word treats it as a normal text selection.

The multi-page method (when you need a whole section)

When you need to duplicate a chapter or a section header that spans multiple pages, the manual approach still works but it gets tedious fast. There are three patterns I have used in real client work.

First, the bookmark approach. Place a bookmark (a named marker Word can jump to) at the start of the section, place another at the end, then use the Go To dialog (Ctrl+G or Cmd+G) to select from bookmark to bookmark in one motion. The selection is precise and survives layout changes better than manual Shift+click, because the bookmark is anchored to the text, not to the page coordinates.

Second, the Outline view approach. Switch Word to Outline view (View > Outline), then click the section heading. The entire section is selected in one click, including all subheadings and body text. Copy, paste into a new section, and Word preserves the heading hierarchy. The downside is that Outline view strips most formatting until you switch back to Print Layout, so it is the strongest fit for content-heavy sections where you do not care about fonts and spacing.

Third, the styles-based selection. If the section starts with Heading 1 or Heading 2 (the built-in paragraph styles Word uses for hierarchical structure), you can use the keyboard shortcut Ctrl+Shift+8 to select everything in that style. It is a hidden trick that works in every version of Word since 2007 and is faster than the bookmark approach for documents with consistent heading styles.

The Macro method (when you do this 50 times a month)

If you duplicate pages often enough that the manual approach is eating your week, a small VBA Macro is the answer. The script lives in the Normal template (a hidden master document that stores Word-wide settings and macros), so it is available in every Word document you open. The version I have been using for the last three years does three things: prompts for the page number to duplicate, copies the content between two markers, and inserts the duplicate on a new page immediately after the source page.

Here is the script in full:

Sub DuplicatePage()
    Dim rngSource As Range
    Dim rngTarget As Range
    Dim pageNum As Long

    pageNum = InputBox("Enter the page number to duplicate:")
    If pageNum = 0 Then Exit Sub

    Set rngSource = ActiveDocument.Bookmarks("\page").Range
    ' Move to the start of the requested page
    rngSource.MoveStart wdPage, pageNum - 1
    rngSource.MoveEnd wdPage, pageNum - 1

    Set rngTarget = rngSource.Duplicate
    rngTarget.Collapse wdCollapseEnd
    rngTarget.InsertBreak wdPageBreak
    rngTarget.Paste
End Sub

The Macro is 12 lines and saves about 4 seconds per duplicate. The real win is that it never loses characters at the page boundary the way manual selection sometimes does. The cost is the 20 minutes it takes the first time you set up the VBA editor and paste it into the right module. If you are going to duplicate pages more than 20 times in the life of your current Word setup, the Macro is worth it.

What I would tell past me

If I could send a message back to the version of me that spent a full Saturday reformatting a 200-page report after a client moved one paragraph, I would say three things.

  • Learn the Shift+click selection. It is faster than Ctrl+A and it does not destroy your formatting. Most Word users never learn this and waste years over-selecting.
  • Use bookmarks for sections, not pages. Bookmarks are anchored to text, not to coordinates. When the document reflows (which Word does on every save), your selection stays correct. Manual selection drifts.
  • Set up the VBA Macro once, even if you only need it twice. The script lives in Normal.dotm and survives every Word upgrade. The 20 minutes you invest pays off the third time you need it, and you will need it a third time.

Trade-offs

Duplicating a page in Word is not free in time. The manual approach takes 30-90 seconds per duplicate depending on the page layout. The Macro takes about 5 seconds per duplicate once it is set up, but the setup itself takes 20 minutes the first time. For a one-off task, the manual approach is the sensible default. For a recurring task (monthly client reports, weekly templates), the Macro is worth the setup.

The bookmark and Outline approaches each have a downside worth naming. Bookmark selections can be thrown off if the original bookmark gets deleted when the source document is reorganized. Outline view strips formatting until you switch back, which means you lose inline images and text boxes until you re-render. Neither is a deal-breaker, but they are real reasons to choose one over the other depending on the document.

If you are duplicating a single page in a short document, the manual Shift+click approach is the cleanest option. If you are duplicating a whole section across 50+ pages, the Macro is the only realistic path. If you are duplicating between two different documents (copying page 3 of doc A into doc B), use the bookmark approach plus Copy > Paste Special > Keep Source Formatting. Anything else loses the styles.

Bottom line

Word does not have a one-click Duplicate Page button, and the workarounds range from 30-second manual selections to 20-minute Macro setups. Start with Shift+click for the simple cases. Build the VBA Macro once if you do this every week. Use bookmarks when the selection needs to survive a reflow. The four minutes you spend learning the cleanest path for each case will save you the eight hours you would otherwise spend over-selecting and reformatting.

Leave a comment