Hi,
Sorry if this is in the wrong section, seems more VBA than Word...
Scenerio
I am trying to write to a preset table in a Word 97 document.
I have bookmarked the table and I can open the bookmark using VBA but I can't for the life of me figure out how I can reference individual cells in it?
Is what I am trying to do possible, I was thinking something along the lines of
Thanks
Sorry if this is in the wrong section, seems more VBA than Word...
Scenerio
I am trying to write to a preset table in a Word 97 document.
I have bookmarked the table and I can open the bookmark using VBA but I can't for the life of me figure out how I can reference individual cells in it?
Is what I am trying to do possible, I was thinking something along the lines of
Code:
.ActiveDocument.Bookmarks("Table1").Select
With .Selection
.Cells("B2").Text = "Name"
.Cells("B3").Text = "Address"
End With
Thanks