Copying Tables to a New Document

Written by Allen Wyatt (last updated December 6, 2025)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Word in Microsoft 365


Carol has a document that includes several tables. She would like to copy all of these tables to a new document and wonders about the best way to accomplish the task.

There are two ways you can accomplish the task. If you only have to do this a few times, for several tables, then a manual approach will be best:

  1. Open both the source document (the one containing the tables) and a new document, making sure that both are visible on-screen.
  2. In the source document, hover the mouse pointer over the table you want to copy. A small box should appear at the upper-left corner of the table. (This box contains a four-headed arrow and is called a move handle.)
  3. Click the move handle. The entire table is selected.
  4. Press Ctrl+C. The table is now copied to the Clipboard.
  5. In the target document, position the insertion point where you want the table pasted.
  6. Press Ctrl+V. Word pastes the table in the document.
  7. Repeat steps 2 through 6 for each table you want to copy.

If you need to copy tables quite often, then a macro is the best way to approach the task. The following short macro uses the active document as the source document. It creates a new document and copies every table from the source document to the new document.

Sub CopyTablesNewDoc()
    Dim SrcDoc As Document
    Dim NewDoc As Document
    Dim Tbl As Table

    Set SrcDoc = ActiveDocument
    Set NewDoc = Documents.Add
    For Each Tbl In SrcDoc.Tables
        Tbl.Range.Copy
        NewDoc.Range(NewDoc.Content.End - 1).Paste
        NewDoc.Range.InsertParagraphAfter
    Next Tbl
End Sub

In the new document created by the macro, each table is separated by a blank paragraph. When completed, the new document is active and you can continue to edit it or save it, as desired.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (10281) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Word in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Understanding the Normalize Text Command

Word includes tons of internal commands that you can access as you customize your system. One of these is the Normalize ...

Discover More

Hiding Columns Not within a Date Range

Want to automatically hide some columns that don't meet a date criteria that you set? You can't do it automatically, but ...

Discover More

Understanding Operators

At the heart of working with Excel is the process of creating formulas that calculate results based on information within ...

Discover More

Learning Made Easy! Quickly teach yourself how to format, publish, and share your content using Word 2021 or Microsoft 365. With Step by Step, you set the pace, building and practicing the skills you need, just when you need them! Check out Microsoft Word Step by Step today!

More WordTips (ribbon)

Overriding Automatic Numbering of Tables

Word lets you add automatic numbering to different elements of your document. It does not, however, allow much ...

Discover More

Table Borders Won't Print

Print a table and you may be surprised if it has no borders. That could be because you actually have the borders turned ...

Discover More

Jumping to a Table Row

Need to jump to a particular row in a table? Word provides an easy way to jump to all sorts of things, but it doesn't ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is three more than 7?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.