If you are saying that you want to set a fixed row height, the following
code should be helpful:
With ActiveDocument.Tables(1).Rows(1)
.HeightRule = wdRowHeightExactly
.Height = InchesToPoints(0.5)
End With
The macro sets the height of the first row in the first table of the
active document to 0.5".
Stefan Blom
Microsoft Word MVP
Can anyone help with some code I could use to adjust the row height in a
table.