Sub PDF()
Dim chemin$, c As Range, cc As Range
chemin = ThisWorkbook.Path & "\PDF\"
If Dir(chemin, vbDirectory) = "" Then MkDir chemin 'crée le sous-dossier
For Each c In ActiveSheet.UsedRange.Columns(1).Cells
If LCase(c) Like "compétition*" Then
Set cc = Cells.Find("Signature", c, xlValues, xlWhole, xlByRows)
With ActiveSheet.PageSetup
.PrintArea = Range(c, cc(3, 8)).Address
.Zoom = False
.FitToPagesWide = 1
.FitToPagesTall = 1
End With
ActiveSheet.ExportAsFixedFormat xlTypePDF, chemin & "SYNTHESE_DPT_" & Left(c(5), 5)
End If
Next
End Sub