Thread: [Solved] Export data to word table
View Single Post
 
Old 08-27-2019, 01:45 PM
Kenneth Hobson Kenneth Hobson is offline Windows 10 Office 2016
Advanced Beginner
 
Join Date: Jun 2018
Posts: 37
Kenneth Hobson is on a distinguished road
Default

If you post code, it is easier to help. If you have the document object set, then use that instead of ActiveDocument. e.g.

Code:
ActiveDocument.Tables(2).Cell(2, 3).Range = Range("A1")
Reply With Quote