I’m using an Excel form to gather data that is then being passed to a complete Word Document. All of my form is working correctly except for two data hand-offs.
When going to Word, I’m using Tables and code like this:
WordDoc.Tables.Item(1).Rows.Item(7).Cells.Item(2).Select
WordAp.Selection.Text = txtPurchStreet.Text
Where I have to know the item/row/cell I’m pasting to.
For this particular problem, I’m in a new section, so I’m assuming it’s a new item. I keep getting an error.
I searched the archives on this but probably don’t know what to search for. Is there a way to tell what object (item) / Row/ Cell you are pasting to without trial and error? In other words, when I look at my Word form, is there a simple way to lable all the cells, etc on my form? Or to see that info?