Hello,

I am using the below code to insert a word document into an existing document. The code executes but my the Header/Footer are on the document being inserted are lost. Is there a way to retain the header/footer when doing something along these lines?

Selection.MoveUp Unit:=wdLine, Count:=75
Selection.InsertFile FileName:="C:\MS Word Template.docx", ConfirmConversions:=False, _
Link:=False, Attachment:=False
With Selection.Font
.Name = "Arial"
.Size = 11
End With

I am relatively new to VBA and would really appreciate any insight into this. I have researched this issue but unfortunately have not come across any working solutions. I appreciate any help anyone has to offer.