Using Word 2010, I have a table in the primary header. I need to insert a blank paragraph before (above) the table. I’m using the following code:
Dim rng As Range
Set rng = ActiveDocument.Sections(1).Headers(wdHeaderFooterPrimary).Range
rng.InsertBefore vbCr
The result is a paragraph at the beginning of the first cell of the table. How can I ensure that the newly added paragraph is before (not in) the table?
Thanks.