Delete Pages within a Document

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

Guest

I am using a calendar template within Word that consist of 12 pages for the
12 calendar months. I only want the current months to distibute internally,
but am stuck on not being able to delete the months/pages i don't need or
only want to send (by email attachment)????
 
Click the paragraph icon in the toolbar (it says "show/.Hide" in the hover
over screen tip. You will now be able to see the page breaks in the file.
Highlight them and delete them.
 
Depending on the actual content of the document - the following macro may do
what you want:

Sub PageDelete()
On Error Resume Next
ActiveDocument.Bookmarks("\page").Range.Delete
End Sub


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

My web site www.gmayor.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

Back
Top