Hi Frank,
I haven't tested the following.
Dim Letters As Integer, Counter As Integer, myrange As Range, sourcedoc As
Document, newdoc As Document
Set sourcdoc = ActiveDocument
Letters = sourcedoc.Sections.Count
Counter = 1
While Counter < Letters
DocName = "Myletter" & LTrim$(Str$(Counter))
Set myrange = sourcedoc.Sections.First.Range
myrange.End = sourcedoc.Sections(2).Range.End
Set newdoc = Documents.Add("My11x17template.dot")
newdoc.Range = myrange
myrange.Cut
newdoc.Sections(3).PageSetup.SectionStart = wdSectionContinuous
newdoc.SaveAs FileName:=DocName, FileFormat:= _
wdFormatDocument, LockComments:=False, Password:="",
AddToRecentFiles:= _
True, WritePassword:="", ReadOnlyRecommended:=False,
EmbedTrueTypeFonts:= _
False, SaveNativePictureFormat:=False, SaveFormsData:=False, _
SaveAsAOCELetter:=False
newdoc.Close
Counter = Counter + 2
Wend
End Sub
Note that it relies on you creating a template (My11x17template.dot) in the
11 x 17 format that you require.

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
Doug Robbins - Word MVP
>I have been trying to save the results of a mail merge
> into separate files using VBA. I have had some limited
[quoted text clipped - 15 lines]
> posted earlier on this forum and that's where I am losing
> the formatting.