Consider this word document:
Now, the following code should insert a new paragraph, and make it the selected one.
Sub Macro1()
Dim p As Paragraph
Set p = ActiveDocument.Content.Paragraphs.Add()
p.Range.Select
End Sub
Instead this is the result. A new paragraph has actually been added but then it selects the previous one.
That's a bit puzzling because no matter where you add the new paragraph, it should be that that is selected at the end and not the previous one.

