With ActiveWorkbook.Sheets("SYNTHESE_Réunion_ADM")
.Activate
fdd = .Cells(10000, 1).End(xlUp).Row
If fdd >= 5 Then .Range(Cells(5, 1), Cells(fdd, 14)).ClearContents
ligne_synthese = 5
For Each Feuil In ActiveWorkbook.Worksheets
If Feuil.Name = "SYNTHESE_Réunion_ADM" Or Feuil.Name = "Actions Closes" Or Feuil.Name = "SYNTHESE_Réunion_RH" Then GoSub Feuil_svt
fdf = ActiveWorkbook.Sheets(Feuil.Name).Cells(10000, 1).End(xlUp).Row
If fdf < 5 Then GoSub Feuil_svt
For ligne = 5 To fdf
.Cells(ligne_synthese, 1) = (Feuil.Name)
.Cells(ligne_synthese, 2) = ActiveWorkbook.Sheets(Feuil.Name).Cells(ligne, 1)
.Cells(ligne_synthese, 3) = ActiveWorkbook.Sheets(Feuil.Name).Cells(ligne, 2)
.Cells(ligne_synthese, 4) = ActiveWorkbook.Sheets(Feuil.Name).Cells(ligne, 3)
.Cells(ligne_synthese, 5) = ActiveWorkbook.Sheets(Feuil.Name).Cells(ligne, 4)
.Cells(ligne_synthese, 6) = ActiveWorkbook.Sheets(Feuil.Name).Cells(ligne, 5)
.Cells(ligne_synthese, 7) = ActiveWorkbook.Sheets(Feuil.Name).Cells(ligne, 6)
.Cells(ligne_synthese, 8) = ActiveWorkbook.Sheets(Feuil.Name).Cells(ligne, 7)
ligne_synthese = ligne_synthese + 1
Next ligne
Feuil_svt:
Next Feuil
End With
End Sub