B
Brian Nixon
Try this:
Create a table with at least two rows near the bottom of a page, such that
the table spans the page break.
Then run this macro:
Sub SetTableProps()
Selection.Tables(1).AllowPageBreaks = False
End Sub
The table is no longer split across the page break. Fine.
Now save the document, close it, and open it again.
AllowPageBreaks is now True, and the table is split across the page break
again!
Am I doing something wrong, or is this a bug?
Cheers,
Brian
Create a table with at least two rows near the bottom of a page, such that
the table spans the page break.
Then run this macro:
Sub SetTableProps()
Selection.Tables(1).AllowPageBreaks = False
End Sub
The table is no longer split across the page break. Fine.
Now save the document, close it, and open it again.
AllowPageBreaks is now True, and the table is split across the page break
again!
Am I doing something wrong, or is this a bug?
Cheers,
Brian