Sub ExtrationEnPDFJJ()
Dim Plage, C As Range, tmp$
If Feuil2.FilterMode Then Feuil2.ShowAllData
Application.ScreenUpdating = False
Set Plage = Feuil2.Range("a1:a" & Feuil2.Cells(Feuil2.Rows.Count, "A").End(xlUp).Row)
For Each C In Plage
If UCase(Left(C, 5)) = "TOTAL" Then
tmp = Mid(C, 7, 9 ^ 9)
Plage.AutoFilter Field:=1, Criteria1:="*" & tmp & "*"
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:="C:\Frs\" & Replace(tmp & " " & C.Offset(, 1), "/", "-")
End If
Next
Plage.AutoFilter
End Sub