Sub HauteurTotale()
Dim t#, r As Range, h#
t = Timer
ActiveCell.Activate 'si un objet est sélectionné
Selection.EntireRow.Select
For Each r In Selection.Rows
h = h + r.RowHeight
Next
MsgBox "Plage " & Selection.Address(0, 0) & vbLf & vbLf & "Hauteur totale " & h & vbLf & vbLf & "Durée du calcul " & Format(Timer - t, "0.00 \sec")
End Sub