Insert word document to another word document without changing the format VBA
问题 First I copy a word document doc1 to a new word document with it format via a button on a userform. Second I insert at the end of this word document (filled with doc1) a new word document doc2 (doc1 and doc2 got text and table and various colors). Each time I pressed a button on another userform to put doc2, I lose the format of doc2. Here my code: Dim docSource As Document Dim docTarget As Document Set docTarget = ActiveDocument Set docSource = Documents.Open(strFilename) ' Add the content