Sub PDF_page()
Dim FilePath As String
'remplace le nom "mondossier" our le nom que tu veux pour ton nouveau dossier sur le bureau
FilePath = Environ("userprofile") & "\DeskTop\mondossier"
If Dir(FilePath, vbDirectory) = "" Then MkDir (FilePath)
' Debug.Print FilePath
With Sheets("Notes")
.Range("A:K").Resize(.usedrange.rows.count).ExportAsFixedFormat Type:=xlTypePDF, _
Filename:=FilePath & "\" & "Premier trimestre.pdf", Quality:=xlQualityStandard, IncludeDocProperties:=True, _
gnorePrintAreas:=False, OpenAfterPublish:=True
End With
End Sub