I'm back...
And I was able to add images into my Word document that were listed in Excel. The "asking" Word idea has been a great help. It makes VBA easy for me to use... with some exceptions. I need the filename/path in Excel to be checked for validity (does the file really exist?) so the Macro doesn't "break".
Working on that next...
VB Code:
If LEN_TEXT_IN_COL_G > 0 Then
'Insert image for page
Set oPara2 = objDoc.Content.Paragraphs.Add
With oPara2
'How do I verify that the filename is right?
.Range.InlineShapes.AddPicture fileName:=STR_IMAGE_PATH, LinkToFile:=False, SaveWithDocument:=True
.Range.InsertParagraphAfter
End With
End If
Thanks!