'-1- je défini une variable A= « bonjour » dans Excel
Dim A As String : A= "Bonjour"
With CreateObject("Word.Application")
.Visible = True
With .documents.Open("C:\Myrep\Test.docm")
.Application.Run "TEST" ,A 'Excel.A=> Word.B
MsgBox A
.Save
.Close False
End With
.Quit
End With
End Sub