set rowheight property

  • Thread starter Thread starter Ron5440
  • Start date Start date
If you mean you want to set the RowHeight for the row that the ActiveCell is
in...

ActiveCell.EntireRow.RowHeight = 3
 
Rows(Selection.Row).RowHeight = 3

Or.

Rows(ActiveCell.Row).RowHeight = 3

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