View Single Post
 
Old 03-17-2024, 01:54 AM
vivka vivka is offline Windows 7 64bit Office 2016
Expert
 
Join Date: Jul 2023
Posts: 293
vivka is on a distinguished road
Default

Hi, Woocash_11! Try this:

Code:
Sub Tbls_Format_1()
'Format all tables in active doc.

Dim oTbl As word.Table
    For Each oTbl In ActiveDocument.Tables
        oTbl.rows.HeightRule = wdRowHeightAtLeast   
    Next oTbl
End Sub
Reply With Quote