Alors essaie avec ça :
Private Sub btnEnrPDF_Click()
Dim nomF As String
nomF = "C:\Factures\F" & Format([E4], "yyyy-mm-dd") & "_" & [E5] & ".pdf"
If Application.OperatingSystem Like "*Mac*" Then nomF = Replace(nomF, "\", "/")
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:=nomF, IgnorePrintAreas:=False, OpenAfterPublish:=False
End Sub
mais si ça plante sur .ExportAsFixedFormat attend qq'un qui a un Mac ou commence tes recherches tout seul.
eric