Sub Création_PDF()
Range("B2:G23").Select
'ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
"C:\Users\fd\Desktop\" & Range("B2") & " " & " du " & "" & Format(Range("C3"), "ddmmyy") & ".pdf", Quality:=xlQualityStandard, _
IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=False
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
ThisWorkbook.Path & "\" & Range("B2") & " " & " du " & "" & Format(Range("C3"), "ddmmyy") & ".pdf"
Range("B3").Select
End Sub