View Single Post
  #4   Report Post  
Posted to microsoft.public.word.tables
Lene Fredborg Lene Fredborg is offline
external usenet poster
 
Posts: 1,291
Default Word 2000 Table Not Splitting Between Pages

You are welcome. I am glad I could help.

--
Regards
Lene Fredborg - Microsoft MVP (Word)
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word


"Lori" wrote:

Thank you for the tip AND the push in the right direction on how to install
the macro. You KNOW that would've been my next question.

Thanks again....!

"Lene Fredborg" wrote:

By default, tables are inserted with text wrapping €ťNone€ť but this will not
change the wrapping style applied to existing tables.

You could use a macro to change all tables in a document to wrapping style
€śNone€ť:

Sub AllTabels_NoWrap()
Dim oTable As Table

For Each oTable In ActiveDocument.Tables
oTable.Rows.WrapAroundText = False
Next oTable
End Sub

If you need help on installing a macro, see:
http://word.mvps.org/faqs/macrosvba/CreateAMacro.htm

--
Regards
Lene Fredborg - Microsoft MVP (Word)
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word


"Lori" wrote:

A client sends us .doc files that are created in 2002/2003 with large tables.
When viewing the docs in Word 2002 or later the tables split nicely between
the pages. When viewing the docs in Word 2000 it doesn't get split up & runs
off the end of a single page. I found that if I go to Table Properties & set
Text Wrapping to None the table then splits perfectly! Is there any way I
can make that a global default vs changing the setting per document?

Thank you in advance for your time & help!