Hi Gordon. Not sure if this will help, but here is some code that Macropod provided me to keep tables on the same page... it sounds like this may be an issue for you. HTH. Dave
'prevent tables from splitting page
For Each Otbl In ActiveDocument.Tables
Otbl.Range.Paragraphs.keepwithnext = True
For Each Ocel In Otbl.Rows.last.Range.Cells
Ocel.Range.Paragraphs.last.keepwithnext = False
Next Ocel
Next Otbl