E
Elbert
Hi,
In Word, I recorded a macro that sets the height of a row
of a table to "at least 1 inch." Here's the macro:
Selection.Tables(1).Rows.HeightRule = wdRowHeightAtLeast
Selection.Tables(1).Rows.Height = InchesToPoints(1)
Is there a way to modify this macro so that it will set
the row height to at least whatever the height is now?
For example, suppose I've typed in enough stuff in the row
so that Word has expanded the height of the row to 2.5
inches. I'd like the macro to figure out what the current
height is (2.5 inches in this example) and set the row to
always be at least that high.
TIA,
Elbert
In Word, I recorded a macro that sets the height of a row
of a table to "at least 1 inch." Here's the macro:
Selection.Tables(1).Rows.HeightRule = wdRowHeightAtLeast
Selection.Tables(1).Rows.Height = InchesToPoints(1)
Is there a way to modify this macro so that it will set
the row height to at least whatever the height is now?
For example, suppose I've typed in enough stuff in the row
so that Word has expanded the height of the row to 2.5
inches. I'd like the macro to figure out what the current
height is (2.5 inches in this example) and set the row to
always be at least that high.
TIA,
Elbert