Option Explicit
Sub Test()
Sheets(Array("Feuil1", "Feuil2")).Select
Sheets("Feuil1").Activate
ActiveWorkbook.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
"C:\Users\Jean-Claude\Downloads\JC Impression.pdf", Quality:= _
xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas:=False, _
OpenAfterPublish:=True
End Sub