I am trying to insert a page break at a specific paragraph, but it always inserts the page break at the first line/paragraph of the document, I don't understand why. Any ideas?
With Word.ActiveDocument
.Paragraphs(15).Range.Collapse Direction:=wdCollapseEnd
.Paragraphs(15).Range.InsertBreak WdBreakType.wdPageBreak
'or this way (Is there a differece): .Paragraphs(15).Range.InsertBreak Type:=wdPageBreak
End With
Thanks Julius