Sub Archiver_Equipages_Pdf()
Dim nom$, Chemin$, temp, T
Dim x, I As Integer
Application.ScreenUpdating = False
I = 7
For x = 8 To Sheets.Count
I = I + 1
Sheets(I).Activate
temp = Split(ThisWorkbook.Name, ".xlsm")(0)
nom = ActiveSheet.Name & " " & temp
Chemin = ThisWorkbook.Path & "\Sauvegarde Equipages PDF\"
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:=Chemin & nom & ".pdf", _
Quality:=xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas:=False, _
From:=1, To:=1, OpenAfterPublish:=False
T = Timer + 0.5: Do Until Timer > T: DoEvents: Loop
Next x
Sheets("Equipages").Activate
MsgBox "Vos onglets ont bien été sauvegarder", vbInformation, "INFORMATION"
Application.ScreenUpdating = True
End Sub