PC Review


Reply
Thread Tools Rate Thread

How can I save each page of a Word Documaent as it's own document?

 
 
Acleos
Guest
Posts: n/a
 
      6th Jan 2008
I created a document in Word 2003 that contains 100 or so pages. On each
page is a recipe. My question is, is there any way that I can save each page
as it’s own document other than selecting each page individually and then
saving it?

Thank you for any assistance.

 
Reply With Quote
 
 
 
 
Tony Jollans
Guest
Posts: n/a
 
      7th Jan 2008
To answer your question there is no way to do it without selecting each page
individually and then saving it, but you can automate the process with a
fairly simple macro ...

Num = 0
Do While ActiveDocument.Range.End > 1
Selection.HomeKey wdStory
Selection.Bookmarks("\Page").Range.Cut
With Documents.Add
.Range.Paste
Num = Num + 1
.SaveAs "Page" & Num
.Close
End With
Loop

--
Enjoy,
Tony

"Acleos" <(E-Mail Removed)> wrote in message
news:9A7D5770-10E5-4EEF-9EE6-(E-Mail Removed)...
>I created a document in Word 2003 that contains 100 or so pages. On each
> page is a recipe. My question is, is there any way that I can save each
> page
> as it’s own document other than selecting each page individually and then
> saving it?
>
> Thank you for any assistance.
>


 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Save 1/2 page word document to jpg and pdf Apota Microsoft Word Document Management 1 11th Jun 2008 10:36 AM
save single page with header of multiple page word document =?Utf-8?B?c2hlbGRvc2Fu?= Microsoft Word Document Management 0 5th Jan 2006 05:54 PM
how do I save web page as word document =?Utf-8?B?ZHltcG5h?= Microsoft Word New Users 1 19th Jul 2005 07:28 PM
how do I save a document as a work page in Word? =?Utf-8?B?QnJpYW4gTGVzbGll?= Microsoft Word New Users 1 5th Apr 2005 06:35 PM
Save htm page as word document =?Utf-8?B?RGFubnk=?= Microsoft Dot NET 1 23rd Dec 2004 12:18 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:13 AM.