Sub RecordPDF()
Application.ScreenUpdating = False
Dim LeRep$, nf$, Fichier$
LeRep = ThisWorkbook.Path & Application.PathSeparator
nf = ThisWorkbook.Name: nf = Mid(nf, 1, InStrRev(nf, ".") - 1)
Fichier = LeRep & nf & Format(Date, """_""ddmmyyyy"".pdf""")
ActiveSheet.ExportAsFixedFormat _
Type:=xlTypePDF, _
Filename:=Fichier, _
Quality:=xlQualityStandard, _
IncludeDocProperties:=True
End Sub