Im trying to drawing some lines, shapes in Word doc from Excel.
Can i do that? Is it some tool like Canvas?
Im connectiong with Word like below:
Can i do that? Is it some tool like Canvas?
Im connectiong with Word like below:
Code:
Sub ExcelWord()
Set wrdApp = GetObject(, "Word.Application")
Set wrdDoc = wrdApp.ActiveDocument
With wrdDoc
'code here
End With
Set wrdDoc = Nothing
Set wrdApp = Nothing
End Sub