B
Branaugh
I have a table that I would like to prevent from spanning across pages. I
created the following macro.
Dim aTable As Table
For Each aTable In ActiveDocument.Tables
aTable.Select
aTable.AllowPageBreaks = False
Next aTable
This works when the document is open, but if you save the document and
open it again, the table is once again spanning multiple pages.
Any thoughts or ideas.
Thanks
Bob Branaugh
created the following macro.
Dim aTable As Table
For Each aTable In ActiveDocument.Tables
aTable.Select
aTable.AllowPageBreaks = False
Next aTable
This works when the document is open, but if you save the document and
open it again, the table is once again spanning multiple pages.
Any thoughts or ideas.
Thanks
Bob Branaugh