How Excel determine row height?

G

Gary''s Student

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
 
Top