This code would go into an excel workbook - so it will copy a picture from (in this example) Sheet1 to a word document
Sub CreateWordDoc()
Dim wdApp As Object
Dim wdDoc As Object
Dim wdRng As Object
Set wdApp = CreateObject("Word.Application")
Set wdDoc = wdApp.Documents.Open("C:\temp\test.docx")
Worksheets("Sheet1").Shapes("Picture 1").Copy
wdApp.activedocument.Content.Paste
wdApp.Visible = True
End Sub
Hope this helps. 
Anthony
“Confidence never comes from having all the answers; it comes from being open to all the questions.”
PS: Remember to mark your questions as Solved once you are satisfied and rate the answer(s) questions.”
Bookmarks