How do i delete a page in Word that doesn't have a page break?

G

Graham Mayor

Select the text you want to delete and press the delete key?
Word is not a page layout application, so vba methods of deleting 'pages'
are a bit hit and miss, however

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

*may* do what you want. http://www.gmayor.com/installing_macro.htm

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


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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