Original post was something like:
Retrieve rows height within a table with vertically merged cells, where the simple code below returns error 5991:
Quote:
Sub Test()
Dim oRow as Row
For Each oRow In Selection.Tables(1).Rows
Debug.Print oRow.Height
Next oRow
End Sub
|