Multiple Page 1's in single document

Z

zSplash

I have a document that consists of multiple (say, 8) sub-documents. For
ease of use, the creators want to create it in a single document. The
trouble is each sub-document needs to be begin with Page 1. How can I do
that?

TIA
 
D

Doug Robbins - Word MVP

Hi zSplash,

Put a Section Break between each "sub-document" and use Insert>Page
Numbers>Format to set the page number of each Section to start at 1, or use
the following macro to do that:

Dim i As Integer
For i = 1 To ActiveDocument.Sections.Count
ActiveDocument.Sections(i).Headers(1).PageNumbers.StartingNumber = 1
Next i

Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.

Hope this helps
Doug Robbins - Word MVP
 
Z

zSplash

Hej, Doug. I hope it hasn't been too long for you to get this response.
(I'll give it awhile.) Thanks so much for your input; I haven't been
successful so far.

So, I have tried your suggestion. I need to have sub-Doc1 have (i.e.) pages
1 to 4, marked, sub-Doc2 have pages 1 to 15, sub-Doc3 have pages 1 to 10,
etc. It just doesn't result in that, no matter what I try (including your
ideas). If I run the code on a document with 7 sections, I still have a
document numbering from page 1 to page 20 (instead of, say, page 1 to 3,
page 1 to 2, etc.) Any other suggestions?

TIA
 
B

Barry Schwarz

Answered in the numbering newsgroup.

Please don't post individual messages to different groups. If you
need the additional exposure, post the same message to all the groups
at once by specifying multiple groups to your newsreader.

Hej, Doug. I hope it hasn't been too long for you to get this response.
(I'll give it awhile.) Thanks so much for your input; I haven't been
successful so far.

So, I have tried your suggestion. I need to have sub-Doc1 have (i.e.) pages
1 to 4, marked, sub-Doc2 have pages 1 to 15, sub-Doc3 have pages 1 to 10,
etc. It just doesn't result in that, no matter what I try (including your
ideas). If I run the code on a document with 7 sections, I still have a
document numbering from page 1 to page 20 (instead of, say, page 1 to 3,
page 1 to 2, etc.) Any other suggestions?

TIA



<<Remove the del for email>>
 
Z

zSplash

Okay. Sorry about that. I was afraid the old posting was stale, and I
needed the answer. How long until a thread becomes "stale"?

st.
 
W

Word Heretic

G'day "zSplash" <zNOSPAMSplash@ gci.net>,

within 2 days you have the first 2 percentiles.

within 2 weeks you have 2.5

within 2 months you have 2.95

3 percentiles cover one half of the ogive curve.





zSplash said:
Okay. Sorry about that. I was afraid the old posting was stale, and I
needed the answer. How long until a thread becomes "stale"?

st.

Steve Hudson

Word Heretic, Sydney, Australia
Tricky stuff with Word or words for you.
wordheretic.com

If my answers r 2 terse, ask again or hassle an MVP,
at least they get recognition for it then.
Lengthy replies offlist require payment.
 
Z

zSplash

o, m'gosh.

st.

Word Heretic said:
G'day "zSplash" <zNOSPAMSplash@ gci.net>,

within 2 days you have the first 2 percentiles.

within 2 weeks you have 2.5

within 2 months you have 2.95

3 percentiles cover one half of the ogive curve.







Steve Hudson

Word Heretic, Sydney, Australia
Tricky stuff with Word or words for you.
wordheretic.com

If my answers r 2 terse, ask again or hassle an MVP,
at least they get recognition for it then.
Lengthy replies offlist require payment.
 

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