View Single Post
 
Old 06-06-2017, 11:49 AM
Jfedora Jfedora is offline Windows 7 32bit Office 2010 32bit
Novice
 
Join Date: Jun 2017
Posts: 4
Jfedora is on a distinguished road
Default

I was able to get it to work with this. Unfortunately, My tables are still rolling over pages, but that's another problem.

Code:
For Y = 0 To LargeTable.Rows.Count
    X = 0
    Do While X < LargeTable.Columns.Count
        If LargeTable.Cell(Y, X).Tables.Count = 1 Then
            X = X + 1
            LargeTable.Rows(Y - 2).Select
            Selection.ParagraphFormat.KeepWithNext = False
            Exit Do
        End If
        X = X + 1
        Loop
Next Y
Reply With Quote