Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.tables
|
|||
|
|||
![]()
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! |
#2
![]()
Posted to microsoft.public.word.tables
|
|||
|
|||
![]()
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! |
#3
![]()
Posted to microsoft.public.word.tables
|
|||
|
|||
![]()
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! |
#4
![]()
Posted to microsoft.public.word.tables
|
|||
|
|||
![]()
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! |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Milo: Paragraphs not splitting across pages | Microsoft Word Help | |||
Table splitting to fit on pages -- Word 97 | Page Layout | |||
How do I stop a table from splitting between two pages? | Tables | |||
WORD 2000 pages layout when EXCEL table inserted | Page Layout | |||
Is there a bug when splitting cells in a Word Table? | Tables |