I want to insert DocB' into DocA using the VBA code: Selection.InsertFile DocB.
DocA is a normal document in every regard.
DocB has 2 sections. The first is 'normal' stuff. The second section (properly marked with a Section Break/Next Page) has a new set of left and right margins.
When DocB is inserted into DocA with the above VBA command, all formatting (fonts, spacing, etc.) EXCEPT that the margins in the second section of DocB don't carry into DocA. (The Section Break/New Page marker is still present and visible in the 'assembled' document.)
Why are my margins being erased/ignored with a Selection.InsertFile command?
(I can manually copy and paste the content of DocB into DocA without issue.)