Insert a table within a table

M

marsulein

Hi All,

May i know how do i insert a table within a table.

For example, I have a 2x1 table. I want to insert yet another tabl
(1x1) into the second row of the first table. How can I do that?

Thanx in advance!

Regards,
Ma
 
J

Jezebel

Tables belong to the Range they're added to. Normally you add a table to the
document itself, but you can use other ranges such as a table cell (but not
a row). If the selection is in the first table --

activedocument.Tables.Add Range:=selection.Tables(1).Cell(2,1).Range,
Numrows:=1, Numcolumns:=1
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top