I want to remove the last line on the header. I currently have 2 lines in the header: the first one I copy-paste and the second one which was there before the copy-paste (the starting point for the copy-paste).
I tried something like that:
`Selection.Sections(1).Headers(1).Range.MoveEnd Unit:=wdCharacter, Count:=-1`
`Documents.Open (strFilename)
Selection.Sections(1).Headers(1).Range.Copy
ThisDocument.Activate
Selection.Sections(1).Headers(1).Range.Paste
Documents(strFilename).Close (0)`
Expect to have only one line, the one I copy-paste from another document Only one line to gain a bit of space with the header.
OK, here is one picture to understand better my question: