R Rick Rothstein Dec 4, 2009 #3 If you mean you want to set the RowHeight for the row that the ActiveCell is in... ActiveCell.EntireRow.RowHeight = 3
If you mean you want to set the RowHeight for the row that the ActiveCell is in... ActiveCell.EntireRow.RowHeight = 3
J JLGWhiz Dec 4, 2009 #4 Rows(Selection.Row).RowHeight = 3 Or. Rows(ActiveCell.Row).RowHeight = 3 The row object has to be specified for the RowHeight property to work.
Rows(Selection.Row).RowHeight = 3 Or. Rows(ActiveCell.Row).RowHeight = 3 The row object has to be specified for the RowHeight property to work.
R Ron5440 Dec 8, 2009 #6 Perfect, ThankYou RR Barb Reinhardt said: ActiveCell.entirerow.height = 3 Click to expand...