How profound Mr. Daniels.
Flytoys,
If Mr. Daniels suggestion wasn't obvious then you may elect to use it.
However, you can use VBA to create a macro that will make quick work of
performing a repetive task like this.
Sub SaveEachPageAsSeparateDocument()
Dim i As Long
Dim lngPages As Long
Dim oMasterDoc As Word.Document
Dim oDocPart As Word.Document
Dim oRngEmpty As Word.Range
Set oMasterDoc = ThisDocument
lngPages = oMasterDoc.ComputeStatistics(wdStatisticPages)
oMasterDoc.Range(0, 0).Select
For i = 1 To lngPages
oMasterDoc.Bookmarks("\Page").Range.Select
Selection.Copy
Set oDocPart = Documents.Add
oDocPart.Range.Paste
Do
Set oRngEmpty = oDocPart.Paragraphs.Last.Range
If Len(oRngEmpty) = 1 Then oRngEmpty.Delete
Loop Until Len(oRngEmpty) > 1
oDocPart.SaveAs "Document Part " & i
oDocPart.Close
Selection.Collapse wdCollapseEnd
Next i
Set oDocPart = Nothing
Set oDocMaster = Nothing
End Sub
See:
http://www.gmayor.com/installing_macro.htm
--
Greg Maxey
See my web site
http://gregmaxey.mvps.org
for an eclectic collection of Word Tips.
I've made a table several pages long, each page is for a separate
department.
How can I save each page separately?
Select the contents of each page, copy it to the clipboard, and paste
it into a new document.