Working With Tables In Ms Word

This simply explains hot to open a word document, add a 3 by 3 table and write
some text to it
Dim myApp As Variant, tables As Variant,adoc As Variant
Dim myrange As Variant, table As Variant, tablecell As Variant
Set myApp = CreateObject("Word.Application")
myApp.Visible = True
myApp.Documents.Add
Set adoc = myApp.Documents("Document1")
Set myrange = adoc.Range(0,0)
Set table = adoc.Tables.Add (myrange, 3 , 3)
With Table
.Cell(1,1).Range.InsertAfter "First cell"
.Cell(Table.Rows.Count, Table.Columns.Count).Range.InsertAfter "Last Cell"
End With

This was first published in November 2000

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.