Sub test_TableauWRD()
Dim oTable As Word.Table
Dim oDoc As Document, oNewDoc As Document
Dim oRange As Range
Set oDoc = ActiveDocument
'adapter le nom et chemin du fichier destination
Set oNewDoc = Documents.Open("C:\Users\STAPLE\Documents\test.docx")
Set oTable = oDoc.Tables(1)
If oDoc.Tables.Count >= 1 Then
'ici 5= le nombre de lignes
With oTable
Set oRange = oDoc.Range(Start:=oTable.Cell(1, 1).Range.Start, _
End:=oTable.Cell(5, oTable.Columns.Count).Range.End)
oRange.Copy
End With
End If
Set oRange = oNewDoc.Tables(1).Cell(1, 1).Range
oRange.PasteAppendTable
End Sub