Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
With Selection
.EndKey Unit:=wdStory
.Find.ClearFormatting
.Find.Execute FindText:="^m", Forward:=False, Wrap:=wdFindStop
If .Find.Found Then
.MoveEnd wdStory
.Delete
End If
End With
If ActiveDocument.BuiltInDocumentProperties(wdPropertyPages) Mod 2 = 1 Then
Selection.EndKey Unit:=wdStory
Selection.InsertBreak Type:=wdPageBreak
End If