Set up your form as a mailmerge main document with the Excel File as the
datasource. execute the merge to a new document and then with that document
active, run the following macro:
Sub splitter()
' splitter Macro
' Macro created by Doug Robbins to save each letter created by a mailmerge
as a separate file.
Dim Letters As Integer, Counter As Integer
Letters = ActiveDocument.Sections.Count
Selection.HomeKey Unit:=wdStory
Counter = 1
While Counter < Letters
DocName = "Myletter" & LTrim$(Str$(Counter))
ActiveDocument.Sections.First.Range.Cut
Documents.Add
Selection.Paste
ActiveDocument.Sections(2).PageSetup.SectionStart = wdSectionContinuous
ActiveDocument.SaveAs FileName:=DocName, FileFormat:= _
wdFormatDocument, LockComments:=False, Password:="",
AddToRecentFiles:= _
True, WritePassword:="", ReadOnlyRecommended:=False,
EmbedTrueTypeFonts:= _
False, SaveNativePictureFormat:=False, SaveFormsData:=False, _
SaveAsAOCELetter:=False
ActiveWindow.Close
Counter = Counter + 1
Wend
End Sub

Signature
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.
Hope this helps
> Hey guys-
> New to this forum, seems like a TON of great info here. I'm gonna post
[quoted text clipped - 12 lines]
> Thanks!
> D
D - 12 Mar 2004 06:05 GMT
Doug-
You rock dude. Im not sure how to create a macro, but, I'm gonna try to
figure this out. Is it possible to save each document filename using data
from 2 separate form fields? ie- Address and last name from the fields in
each document will combine to save the document as 123 Main St -
Johnson.doc
Thanks for any and all handholding you can! This is awesome, thank you!!!
D
> Set up your form as a mailmerge main document with the Excel File as the
> datasource. execute the merge to a new document and then with that document
[quoted text clipped - 46 lines]
> > Thanks!
> > D
Answered in your other post - please do not duplicate posts.

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP
Web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
> Hey guys-
> New to this forum, seems like a TON of great info here. I'm gonna
[quoted text clipped - 10 lines]
> Thanks!
> D