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

Splitting Table Cells

When formatting tables, you can both merge and split cells. Here's a couple of ways you can easily perform the latter ...

Discover More

Turning Headers On and Off

Normally Excel displays row and column headers in a worksheet. If you prefer, you can turn these navigational aids off ...

Discover More

Specifying Proper Case

If you need to change the case of letters in a cell, one of the functions you can use is the PROPER function. This tip ...

Discover More

Create Custom Apps with VBA! Discover how to extend the capabilities of Office 365 applications with VBA programming. Written in clear terms and understandable language, the book includes systematic tutorials and contains both intermediate and advanced content for experienced VB developers. Designed to be comprehensive, the book addresses not just one Office application, but the entire Office suite. Check out Mastering VBA for Microsoft Office 365 today!

More WordTips (ribbon)

Cannot Combine Two Tables

When working with tables, a common editing task is to combine two tables into one. Sometimes, though, you may run into ...

Discover More

Viewing Formulas in Table Cells

Word allows you to insert simple formulas, using fields, in table cells. If you want to see these formulas in their ...

Discover More

Printing Only Selected Rows from a Table

Tables are a great way to organize the information in a document. If your table gets quite long, you may not want to ...

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 one less 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.