Sub Summary()
Dim F As Worksheet, lig&, w As Worksheet, total As Range
Set F = Sheets("Summary") 'feuille de destination, à adapter
lig = 1
Application.ScreenUpdating = False
F.Cells(lig + 1, 2).Resize(F.Rows.Count - lig, 9).ClearContents 'RAZ
For Each w In Worksheets
Set total = w.Columns("I").Find("Total", , xlValues, xlWhole)
If Not total Is Nothing Then
lig = lig + 1
F.Cells(lig, 2).Resize(, 9) = total(1, 2).Resize(, 9).Value
End If
Next
With F.UsedRange: End With 'actualise la barre de défilement verticale
End Sub