Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
tbalt tbalt is offline
external usenet poster
 
Posts: 1
Default Automatically saving seperate pages in same document

Does anyone know if there is a way to take a multiple page document (mail
merge) and save each page as it's own file automatically? Can it even be
done? Any help would be appreciated.
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
garfield-n-odie [MVP] garfield-n-odie [MVP] is offline
external usenet poster
 
Posts: 2,587
Default Automatically saving seperate pages in same document

The following is a macro originally posted by Word MVP Doug
Robbins in response to a similar question:

Sub splitter()
'
' splitter Macro
' Macro created 16-08-98 by Doug Robbins to save each page of a
document
' as a separate file with the name Page#.DOC
'
Selection.HomeKey Unit:=wdStory
Pages = ActiveDocument.BuiltInDocumentProperties(wdPropert yPages)
Counter = 0
While Counter Pages
Counter = Counter + 1
DocName = "Page" & Format(Counter)
ActiveDocument.Bookmarks("\Page").Range.Cut
Documents.Add
Selection.Paste
ActiveDocument.SaveAs FileName:=DocName, FileFormat:= _
wdFormatDocument, LockComments:=False, Password:="",
AddToRecentFiles:= _
True, WritePassword:="", ReadOnlyRecommended:=False,
EmbedTrueTypeFonts:= _
False, SaveNativePictureFormat:=False,
SaveFormsData:=False, _
SaveAsAOCELetter:=False
ActiveWindow.Close
Wend
End Sub

And if you don't know how to install a macro, then see
http://www.gmayor.com/installing_macro.htm.


tbalt wrote:

Does anyone know if there is a way to take a multiple page document (mail
merge) and save each page as it's own file automatically? Can it even be
done? Any help would be appreciated.


  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Automatically saving seperate pages in same document

See the add-in at http://www.gmayor.com/individual_merge_letters.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


tbalt wrote:
Does anyone know if there is a way to take a multiple page document
(mail merge) and save each page as it's own file automatically? Can
it even be done? Any help would be appreciated.



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Moving Pages Within A Word Document Peter Sutton Microsoft Word Help 1 March 24th 06 05:15 PM
Printing selected pages of a merged document Andrew Mailmerge 2 March 23rd 06 07:28 PM
How to number only the Main Document, not first pages A. L. Microsoft Word Help 2 October 19th 05 03:38 AM
Word 2000 printing landscape pages - orientation in final document KLK Microsoft Word Help 1 May 16th 05 03:11 PM
How do I remove excess blank pages from a finished document? dr.sara Microsoft Word Help 2 November 25th 04 12:14 AM


All times are GMT +1. The time now is 09:30 AM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"