A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » Tables
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Rows Break Across Pages



 
 
Thread Tools Display Modes
  #1  
Old November 4th, 2005, 02:27 AM
koala824 at Comcast
external usenet poster
 
Posts: n/a
Default Rows Break Across Pages

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


  #2  
Old November 14th, 2005, 08:22 AM
Stefan Blom
external usenet poster
 
Posts: n/a
Default Rows Break Across Pages

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


"koala824 at Comcast" wrote in message
...
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





 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Word table won't break across pages cynjazz Tables 7 November 8th, 2005 08:40 AM
Automatically Break Multiple Rows to Two Columns chuangbl General Discussion 1 October 4th, 2005 02:21 PM
formula to use when number of rows changes dynamically confused Worksheet Functions 3 August 17th, 2005 03:55 PM
Number of pages excluding content pages Number of pages excluding content pages General Discussion 4 January 11th, 2005 02:21 PM
Print Rows at Top only on some pages S.J. Ring General Discussion 2 August 3rd, 2004 09:04 PM


All times are GMT +1. The time now is 02:53 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.