Delete a page

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

Guest

I want to delete page 10.

How do I do it.

I cannot use the delete key, this isn't working. Is there a way to remove a
page from the menu?

Thanks
 
Do you have a physical problem with your Delete key - or is the Delete
function in Word just not working?

The Menu equivalent of Delete is Edit > Clear > Contents. Can you do that?

Or, possibly Cut the selection and just don't paste it anywhere.
 
Word is not a page layout application. A Word 'page' is a vague transient
item made up of several elements and affected by various factors. Depending
on what is on the 'page', you may be able to delete the page the cursor is
in with the following macro:

Sub PageDelete()
ActiveDocument.Bookmarks("\page").Range.Delete
End Sub

Note undo (CTRL+Z) will restore the page if the results are not what you
anticipated.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
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