Vertically Merge Cells in a Table

J

Jeff Hall

I can't find this anywhere in the online help.

What is the property that will tell me how many rows of a table are spanned
by a vertically merged cell?
 
J

Jezebel

There is no property that tells you this directly. Check the RowIndex and
ColumnIndex properties of the cell. Then check each subsequent cell (use the
..Next property) until either you reach the end of the table, or you find a
cell with a ColumnIndex <= the ColumnIndex of the original cell. The
RowIndex of the cell before is the last row spanned by the original cell.
 
Top