How Excel determine row height?

  • Thread starter Thread starter Smitesh Tamboli
  • Start date Start date
To get the height of a row:

Sub bigmac()
MsgBox (ActiveCell.RowHeight)
End Sub

To set the height of a row:

Sub littlemac()
ActiveCell.RowHeight = 20
End Sub
 
Back
Top