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

Mixing Column Formats On a Page

Want to switch the number of columns used for your text, in the middle of a page? You can do this very easily by ...

Discover More

Putting Cell Contents in Footers

Referencing information between cells in a worksheet is a piece of cake using some elemental formulas. You cannot, ...

Discover More

Creating a Dated Backup File

As you are developing your workbooks, you might want a way to automatically create backup files that include a date and ...

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)

Clearing the Contents of a Table

Want to get rid of information within a table, but not the table itself? Here's a guide to understanding the effects that ...

Discover More

Formatting a Table Using a Macro

Tables are a great way to present information in an easy-to-understand manner. If you want to do some specialized ...

Discover More

Blank Page Printing after Table at End of Document

When you print, do you get an extra blank page printed at the end of the document? It could be because of the final ...

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 2 + 6?

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.