View Single Post
  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default How to delete a page in multipage document

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
Word MVP web site http://word.mvps.org


Suzanne S. Barnhill wrote:
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


"Jimbo" wrote in message
...
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