Hi there, I have an excel spreadsheet that populates a word template.

One thing it does is add a logo....

With appWD.ActiveDocument.Bookmarks("Logo")
        appWD.Selection.InlineShapes.AddPicture FileName:=ThisWorkbook.Path & "\templates\" & strLogo, LinkToFile:=False, SaveWithDocument:=True
End With
This works fine, but when I try to add another logo it just places two image files in the first Bookmark...

With appWD.ActiveDocument.Bookmarks("Logo")
        appWD.Selection.InlineShapes.AddPicture FileName:=ThisWorkbook.Path & "\templates\" & strLogo, LinkToFile:=False, SaveWithDocument:=True
End With

With appWD.ActiveDocument.Bookmarks("LogoA")
        appWD.Selection.InlineShapes.AddPicture FileName:=ThisWorkbook.Path & "\templates\" & strLogo, LinkToFile:=False, SaveWithDocument:=True
End With