Effectivement, désolé. Voici le code que j'utilise :
Sub export_donnees_dans_word()
Dim wordapp As Word.Application
Dim worddoc As Word.Document
Set wordapp = CreateObject("word.application")
Set worddoc = wordapp.Documents.Open("D:\Documents\Test_Publi\test.docx")
worddoc.Bookmarks("signet1").Range.Text = Range("c2").Value ' cellule excel formatée en monétaire
worddoc.Bookmarks("signet2").Range.Text = Range("d2").Value ' cellule excel formatée en monétaire
worddoc.ExportAsFixedFormat OutputFileName:= _
"_" & ".pdf", ExportFormat:= _
17, OpenAfterExport:=True, OptimizeFor:= _
0, Range:=0, From:=1, To:=1, _
Item:=0, IncludeDocProps:=True, KeepIRM:=True, _
CreateBookmarks:=0, DocStructureTags:=True, _
BitmapMissingFonts:=True, UseISO19005_1:=False
worddoc.Close savechanges:=False
wordapp.Quit
End Sub