Sub Word_PDF()
Dim Wapp As Object, fichier$
On Error Resume Next
Set Wapp = GetObject(, "Word.Application")
On Error GoTo 0
If Wapp Is Nothing Then MsgBox "Ouvrez le document Word...": Exit Sub
fichier = ThisWorkbook.Path & "\Word_PDF.pdf"
Wapp.ActiveDocument.ExportAsFixedFormat fichier, 17
MsgBox "Le fichier '" & fichier & "' a été créé..."
End Sub