I want to generate a Ms Word documents with VBA using a template.
I need to import the Ms Word template it into excel (in a Sheet), manipulate it (by adding some data from other excel sheets) and then generate the word document.
The problem is that I'm not able to copy the template in excel, it contains some tables and text, and when I try to copy/paste it doesn't keep the same formatting style ... I tried to use the Paste Option as mentionned Here but it doesn't solve the problem ...
Should I manipulate the template programatically with VBA and fill it directly from excel ?
ActiveDocument.Bookmarks("blah").Range.InsertAfter "Your text here"
– Tim Williams