HELP!!!
However, if you just type text and then run a macro containing the
following code, it will insert a page break before each 251st Word
Dim myrange As Range
Selection.HomeKey wdStory
With Selection.Find
.ClearFormatting
.Execute FindText:="^b", Replace:=wdReplaceAll, ReplaceWith:="",
Forward:=True, MatchWildcards:=False
End With
Selection.HomeKey wdStory
Start:
Set myrange = Selection.Range
myrange.End = ActiveDocument.Range.End
If myrange.Words.Count > 250 Then
myrange.Words(251).Select
Selection.Collapse wdCollapseStart
Selection.InsertBreak
GoTo Start
Else
Exit Sub
End If
Running it again will remove all of the page breaks and re-insert them again
in new positions if the text has changed.
--
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"Paula S" <Paula S...@discussions.microsoft.com> wrote in message
news:9670022B-CE6E-47D8...@microsoft.com...