Detaching one page?

G

Gordon

Word 2007 - is it possible to detach one page for sending separately, or is
it just a question of the good old copy and paste in a new document?
 
T

Terry Farrell

Mostly correct but sometimes it may be easier to delete the unwanted text,
use Send To and once it has gone, close the original without saving.

Terry
 
G

Graham Mayor

A macro *may* help

Sub CopyCurrentPageToNewDoc()
ActiveDocument.Bookmarks("\page").Range.Select
Selection.copy
Documents.Add Template:="Normal"
Selection.Paste
End Sub

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

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
G

Gordon

Gordon said:
Word 2007 - is it possible to detach one page for sending separately, or
is it just a question of the good old copy and paste in a new document?


Thanks for the replies - I just copied and pasted the one page - I thought
that would be the easy way and it was!
 

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