Get the row height of a cell
=rowsize() is the row height of the active cell
=rowsize(A1) is the row height of cell A1
Function RowSize(Optional Cell As Variant)
If IsMissing(Cell) Then
RowSize = ActiveCell.RowHeight
Else
RowSize = Cell.RowHeight
End If
End Function