set rowheight property

R

Rick Rothstein

If you mean you want to set the RowHeight for the row that the ActiveCell is
in...

ActiveCell.EntireRow.RowHeight = 3
 
J

JLGWhiz

Rows(Selection.Row).RowHeight = 3

Or.

Rows(ActiveCell.Row).RowHeight = 3

The row object has to be specified for the RowHeight property to work.
 
Top