Use a macro to do the extraction
Dim Source as Document, Target as Document Dim i as Long Dim tablerange as Range
Set Source = ActiveDocument 'the document containing the tables
Set Target = Documents.Add
For i = 1 to Source.Tables.Count Set tablerange = Source.Tables(i).Range Target.Range.InsertAfter tablerange & vbCr Next i
-- Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my services on a paid consulting basis.
Doug Robbins - Word MVP
"R Nelson" <R Nelson[ at ]discussions.microsoft.com> wrote in message news:ECF729A8-CCB0-4B60-AE5B-6557C9040F6C[ at ]microsoft.com...
[Quoted Text] >I need to insert numerous tables into a very large document and maintain >some > means of being able to extract the tables (at a later time) to a separate > document.
|