remove section break and renumbering??

L

L.S.

Winxp, Office 2k

Have a .doc I'm suppose to edit that is ~ 500 pages. The doc didn't have
page numbers so when I numbered pages, it turned into a mess. I'm guessing
there are "several" section breaks causing the numbering problem.

Is there a way to remove section breaks en mass? This doc has ~ 50 stories
from different writers so whoever put it together inserted section breaks or
word inserted them. Doesn't really matter how they got there but I'd rather
not go through each page checking for breaks.

When I numbered the pages, I assuming in the page numbers section (format),
that under Page numbering the "start at:" box was checked instead of
"continue from previous section".
Can I just redo numbering but check "continue from previous section"?
at least this way the entire doc is numbers in order.

thanks,

L.
 
D

Doug Robbins - Word MVP

Running a macro containing the following code should set the format of the
page numbering in each Section so that it continues from that in the
previous Section:

Dim i As Long
With ActiveDocument
For i = 1 To .Sections.Count
.Sections(i).Footers(1).PageNumbers.RestartNumberingAtSection =
False
Next i
End With


--
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top