Convert the first table in the document to text separated by paragraphs
Sub first()
Dim exTable As Range
Set exTable = Documents("yourDoc.doc").Tables(1). _
ConvertToText(Separator:=wdSeparateByParagraphs)
exTable.Copy
Documents.Add
Selection.Paste
End Sub