How do I detect a Word table with (horizontally) merged cells?
- by Reuben
When a Word table contains horizontally merged cells, accessing aTable.Columns.First or performing a For Each over aTable.Columns will result in an error.
Is there a way to determine if a table contains horizontally merged cells without resulting in an error?
I've read Determine if a Word cell is merged, but that is about detecting if a particular Word table cell is merged, rather than does the whole table have any merged cells.