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

Copying Formulas using a Pattern

Copying formulas from one cell to another is quite intuitive in Excel—unless you want the copied formulas to follow ...

Discover More

Centering a Table

Left-justified tables are great for many document designs, but you may want instead to center a table between the margins ...

Discover More

Understanding Templates

Templates are used to store a pattern for how a document should look. As such, they can be a very powerful tool for ...

Discover More

Discover the Power of Microsoft Office This beginner-friendly guide reveals the expert tips and strategies you need to skyrocket your productivity and use Office 365 like a pro. Mastering software like Word, Excel, and PowerPoint is essential to be more efficient and advance your career. Simple lessons guide you through every step, providing the knowledge you need to get started. Check out Microsoft Office 365 For Beginners today!

More WordTips (ribbon)

Displaying Table Gridlines

For those times when you remove the borders from your tables, Word provides a way that you can display non-printing ...

Discover More

Quickly Moving Your Table

For those who love to use the mouse during editing, you can use the little critter to help move your tables to exactly ...

Discover More

Cannot Set Heading Rows in a Table

Word allows you to specify which rows in a table should be considered headings. What if setting the headings doesn't work ...

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 two minus 1?

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.