I needed to insert multiple copies of a group of strings formatted as shown below.
+ ------------------------------------------------- +
| 1.1 |
+ ------------------------------------------------- +
| | 2.2 | | 2.4 | |
| 2.1 + --------- + 2.3 + --------- + 2.5 |
| | 3.2 | | 3.4 | |
+ ------------------------------------------------- +
| 4.1 |
+ ------------------------------------------------- +
| | 5.2 | | 5.4 | |
| 5.1 + --------- + 5.3 + --------- + 5.5 |
| | 6.2 | | 6.4 | |
+ ------------------------------------------------- +
In case A, I needed a few copies of lines 1-3 inserted before line 4.
In case B, I needed several copies of rows 4-6 inserted at the end of the table.
The table.rows (n) method does not work and gives the following error:
Runtime Error '5991':
It is not possible to access individual rows in this collection because the table has vertically merged cells.
However, this can be done from the user interface, so it should be possible!
source
share