page sequences

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I change the order of pages in a Word document? e.g. make page 8 into page 2 in a sequence of pages.
 
There is no concept of 'page' as an entity in Word, the pages are created by
text flow which is governed by a variety of factors; however, depending on
what is actually in those 'pages' the following macro *may* help, but use
with caution and remember that while the document remains open you can go
back with undo if it does not produce the required results:

Sub PageMove()
sNumber = InputBox("Move to location before which page?", "Move Page", 1)
ActiveDocument.Bookmarks("\page").Range.Cut
Selection.GoTo What:=wdGoToPage, Which:=wdGoToNext, Name:=sNumber
Selection.Paste
End Sub


--
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP
E-mail (e-mail address removed)
Web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
 
I suspect you may be trying to create a booklet. See
http://word.mvps.org/FAQs/Formatting/BookletPrinting.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

zorrash said:
How do I change the order of pages in a Word document? e.g. make page 8
into page 2 in a sequence of pages.
 

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

Back
Top