Hey Guys,
My current goal is to take a list that I have and simply populate a table I have in a word template.
The only question I have is how do I take a hold of the table?
Once I declare
and I know that I can add stuff to the table using
How do I set oTable to the table in my template? I cant seem to find anything, only how to create and then add but not add to existing.
Thanks
My current goal is to take a list that I have and simply populate a table I have in a word template.
The only question I have is how do I take a hold of the table?
Once I declare
Code:
Dim oTable As Word.Table
Code:
oTable.Cell(r, c).Range.Text = x
Thanks