How to delete a page in multipage document

G

Guest

I have a multipage word document and I want to delete one page that I
selected to navigate the document. I cannot find any data on deleting a page
 
S

Suzanne S. Barnhill

The only way (other than VBA) to delete a page is to select everything on it
and press Delete. See http://daiya.mvps.org/wordpages.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.

Jimbo said:
I have a multipage word document and I want to delete one page that I
selected to navigate the document. I cannot find any data on deleting a
page
 
G

Graham Mayor

Even using vba, there is no guarantee that the results will be as imagined,
because Word has no real concept of pages. It is not a page layout
application - but try the following which will delete the 'page' the cursor
is in:

Sub PageDelete()
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

Similar Threads


Top