Sub TestC()
'Cocher la référence à la librairie Word dans VBE
'Outils/Références/Microsoft Word XX.0 Library
Dim strPath$, strFile$, objWord As Word.Application
Dim objDoc As Word.Document, oDocFic As Word.Document, rng As Word.Range
strPath = "C:\Users\STAPLE\Documents\testWORD\" ' à adapter
Set objWord = CreateObject("Word.Application")
Set objDoc = objWord.Documents.Add: objWord.Visible = False
Application.ScreenUpdating = False
With ActiveSheet
For j = 2 To .Cells(Rows.Count, 1).End(xlUp).Row
Set oDocFic = _
objWord.Documents.Open(Filename:=strPath & .Cells(j, 1).Value2, _
ReadOnly:=True, AddToRecentFiles:=False)
With objDoc.Range
.Collapse Direction:=wdCollapseEnd
.InsertBreak Type:=wdPageBreak
.Collapse Direction:=wdCollapseEnd
.FormattedText = oDocFic.Range.FormattedText
End With
oDocFic.Close SaveChanges:=False
Next
End With
objWord.Visible = True
objDoc.Bookmarks("\page").Range.Delete
End Sub