Written by Allen Wyatt (last updated March 5, 2022)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, Word in Microsoft 365, and 2021
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:
Figure 1. The Row tab of the Table Properties dialog box.
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:
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, Word in Microsoft 365, and 2021.
Do More in Less Time! Are you ready to harness the full power of Word 2013 to create professional documents? In this comprehensive guide you'll learn the skills and techniques for efficiently building the documents you need for your professional and your personal life. Check out Word 2013 In Depth today!
Need to align numbers around their decimal point within a table? It's easy to do by using the three simple steps provided ...
Discover MoreOne of the most common ways to format information in a table is to apply some sort of alignment to the contents of table ...
Discover MoreInsert a table into your document and it normally appears aligned with the left margin. Word allows you to indent the ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
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.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments