Sub Importer_pdf()
'
' Macro1 Macro
'
Application.ScreenUpdating = False '---cacher les actions de la macro---
Dim Path As String, Nom As String
Application.DisplayAlerts = False
Path = Range("A83").Value
Nom = Range("K13").Value & ".pdf"
If Dir(Path & Nom) <> "" Then
Else
'
Range("A1:E81").Select
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
Path & Nom & , Quality:=
xlQualityStandard , IncludeDocProperties:=True, IgnorePrintAreas:=False, _
OpenAfterPublish:=False
Range("A6:B6").Select
End Sub