Hi All
This is an Excel vba coding help request. Please don’t send me to the Word forum!
I am trying to use Excel vba to insert a new page into an already opened Word document, DocA.
My DocA has been opened and successfully updated from Excel using Excel vba.
I am using bookmarks in DocA. I have a bookmark at the required insertion point for the new page.
For my new page, I have Excel open a single-page template DocB, update a couple of entries in the new page with data from Excel, and now want to stuff this page into DocA at the insertion point, which is bookmarked as “putHere”.
This is where I’m at:
xxx code working up to here xxx
With zDocA.Bookmarks
.Item(“putHere”).Select
‘what code do I need here to stuff my DocB contents???
End With
Any help most appreciated.
zeddy