hi,

in a word doc., i have 3 tables. in vba for word xp, how can i create a table within one of the tables?

thanks,

william.

--

--

Re: create a table within a table in vba? by Jezebel

Jezebel
Fri Jul 02 17:01:10 CDT 2004

The Range argument to the Tables.Add function specifies where the table
should go. To nest the table, use the cell that should contain it:

activedocument.Tables.add Range:=activedocument.Tables(1).Cell(2,3).Range,
NumRows:=2, NumCols:=2



"William" <William@discussions.microsoft.com> wrote in message
news:6D915D6E-B67A-4950-ACAB-C6CC4F4AD3DD@microsoft.com...
> hi,
>
> in a word doc., i have 3 tables. in vba for word xp, how can i create a
table within one of the tables?
>
> thanks,
>
> william.
>
> --
>
> --
>