I have a table (call it B
) inside another table (call it A
).
How do I add rows to table A
? The cursor is always on the inner table (B
) so I can’t add rows to the outer table (A
).
I need to add a row before the first row of A
.
(In reality:
I have one table and in every cell of that table there is table with a varying number of columns.
I need to add a row before the first row of the outer table (A
)
)