Stopping Row Breaking for Many Tables

Written by Allen Wyatt (last updated March 5, 2022)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365


When working with tables, you may not want the individual rows in the table to break across pages. In other words, you want everything in each row to be on the same page. This is easy enough to do manually—you just adjust the table properties in this manner:

  1. Select the row (or rows) you want to affect.
  2. Display the Layout tab of the ribbon.
  3. Click the Properties tool in the Table group. Word displays the Table Properties dialog box.
  4. Make sure the Row tab is selected. (See Figure 1.)
  5. Figure 1. The Row tab of the Table Properties dialog box.

  6. Clear the Allow Row to Break Across Pages option.
  7. Click OK.

Now each row will stay on its own page. The table will still break across pages, but individual rows in the table will not.

While this seems easy enough, it can be tiresome to go through this same process for lots of tables in a document. For example, if you have 50 tables, then you'd have to go through the above steps 50 times. Argh!

The answer is to use a macro to change the Allow Row to Break Across Pages setting for all the tables. The following will do the trick:

Sub StopRowBreaking()
    Dim tbl As Table

    For Each tbl In ActiveDocument.Tables
        tbl.Rows.AllowBreakAcrossPages = False
    Next
    Set tbl = Nothing
End Sub

The macro works because it steps through each table and clears the setting (the AllowBreakAcrossPages property) for all the table's rows as a group. It is very quick, even if you have 50 or more tables in your document.

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 (13339) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, 2021, 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

Determining Word Versions of Documents

If you know where to look, you can figure out which version of Word was last used to work on a document. It takes some ...

Discover More

Editing Individual Cells

Need to edit the data within a cell? There are any number of ways you can perform the edit; this tip documents them all.

Discover More

Quickly Dumping Array Contents

Variable arrays are used quite often in macros. If you use an array once in your macro and then need to reuse it for ...

Discover More

Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!

More WordTips (ribbon)

Adding Diagonal Borders

Want to add a border diagonally, through the middle of a table cell? It's easy if you follow the formatting steps ...

Discover More

Preventing Overlapping Tables

You can spend considerable time getting the tables in your document to look just right. What happens, though, when you ...

Discover More

Adjusting Column Width Using the Ribbon

If you want to resize the width of your table columns, you can do it using a mouse, but you can get more precise widths ...

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 six minus 5?

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.