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

Vertical Alignment of Sections

Using one of the page setup options in Word, you can specify that the paragraphs within the section be vertically aligned ...

Discover More

Printing to a Disk File

When printing a worksheet, there may be times when you want to send the printer output to a disk file instead of to the ...

Discover More

Setting Spell-Checking Options

Like many things in Word, you can configure the way the spelling checker does its job. If you want to exercise more ...

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)

Jumping to the Ends of Table Rows

Need to jump from one end of a table row to another? Word provides a couple of handy shortcuts that can make this type of ...

Discover More

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

Resizing Your Table

Need to make your table a different size? It's easy to do, using the same general technique you use when resizing a ...

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 more than 9?

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.