> I have VBA code for Excel that gathers the data from a worksheet for
> export
[quoted text clipped - 13 lines]
>
> I have no idea about the Word Object Model. Any ideas??? Starting place???
The Document object have a Tables collection. Each Table object has a Cell
collection. So if you want the text out of the cell in row 3, column 5, then
this will do the trick
MsgBox ActiveDocument.Tables(1).Cell(3, 5).Range.Text
You may also find this article helpful on the Word object model
Getting To Grips With VBA Basics In 15 Minutes
http://www.word.mvps.org/FAQs/MacrosVBA/VBABasicsIn15Mins.htm

Signature
Regards
Jonathan West - Word MVP
www.intelligentdocuments.co.uk
Please reply to the newsgroup