copy a page

  • Thread starter Thread starter giordi
  • Start date Start date
G

giordi

I use xp, how do I make a copy of a page? or duplicate
the contents of a page onto a new page?
 
There is no such thing as a 'page' in Word. A 'page' is merely a transient
view which depends on a number of factors including the current printer
driver. It is not possible to copy a page completely. For a start the
document is made up of three views (text/header & footer/drawing). The
header is another transient view that does not only apply to the current
page, but is section or document based.

Depending on the page content and to what extent you want to duplicate the
content of the page, the following small macro may help.

Sub CopyCurrentPageToNewDoc()
ActiveDocument.Bookmarks("\page").Range.Select
Selection.Copy
Documents.Add Template:="Normal", NewTemplate:=False, DocumentType:=0
Selection.Paste
End Sub

See http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP
E-mail (e-mail address removed)
Web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
 
Back
Top