--- "Save Pages n through m to new WORD document"?

R

rasxyz

I want to save pages 11 through 109 from the current WORD
document into a new saved WORD document. I do not want to
use cut and paste. Is there another easy way do this "Save
Pages n through m to new WORD document"?
 
G

Greg

rasxyz,

You can use a macro to save selected text (i.e., you will
need to select the text between pages 11 and 109)

Select the text and use the following macro to copy to a
new file. Edit the path to that of the template used for
the document - here normal.dot (but it could be any
template).

Sub CopySelectedToNewDoc()

Selection.Copy
Documents.Add Template:= _
"C:\Documents and Settings\UserName\Application
Data\Microsoft\Templates\Normal.dot", NewTemplate _
:=False, DocumentType:=0
Selection.Paste
End Sub
 
&

&:-jesse\)

Ras,

Are you concerned about losing formatting from a cut and
paste operation? Curious as to why you are not choosing to
delete pages 1-10 and saving the document to a new name?

jesse
 
R

rasxyz

This was just a simple example. It's more complicated. I
have received a large document with many, many sections.
Hard to mange a large WORD document. I want to break out
all the sections into manageable multiple files. There is
another possible method that I may use entailing Acrobat
which may be better.
 

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