Range.InsertBreak (Word)

Inserts a page, column, or section break.

When you insert a page or column break, the range is replaced by the break. If you don't want to replace the range, use the Collapse method before using the InsertBreak method. When you insert a section break, the break is inserted immediately preceding the Range. Some of the constants listed above may not be available to you, depending on the language support (U.S. English, for example) that you have selected or installed.

InsertBreak (Type)

Type: The type of break to be inserted.Can be one of the WdBreakType constants. If omitted, the default value is wdPageBreak.


Set myRange = ActiveDocument.Paragraphs(2).Range 
With myRange 
 .Collapse Direction:=wdCollapseEnd 
 .InsertBreak Type:=wdPageBreak 
End With