Rows Break Across Pages

  • Thread starter koala824 at Comcast
  • Start date
K

koala824 at Comcast

Is there a way to change the default so that table rows will NOT break
across pages? I can correct this individually on each table, but I would
like to change the default. Thanks in advance.
Ted
 
S

Stefan Blom

One way is to use a macro such as the following:

Dim t As Table, r As Row
For Each t In ActiveDocument.Tables
For Each r In t.Rows
r.AllowBreakAcrossPages = False
Next r
Next t

The macro turns off the "Allow row to break across pages" option for
all existing tables in the active document.

If you need help on using the code, see:
http://gmayor.com/installing_macro.htm

--
Stefan Blom
Microsoft Word MVP


in message
news:[email protected]...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top