Re : Aide pour un macro
bonjour,
Cette macro dans un module :
Sub cumul()
Application.ScreenUpdating = False
Sheets("TOTAL").Select
derli = Sheets("TOTAL").Range("A6553").End(xlUp).Row
Range(Cells(2, 1), Cells(derli, 2)).ClearContents
For Each sht In ActiveWorkbook.Sheets
a = sht.Name
If Left(a, 5) <> "Table" Then GoTo fin
derligne = Sheets(a).Range("A6553").End(xlUp).Row
Sheets(a).Select
Range(Cells(2, 1), Cells(derligne, 2)).Copy
derli = Sheets("TOTAL").Range("A6553").End(xlUp).Row + 1
Sheets("TOTAL").Select
Sheets("TOTAL").Select
Cells(derli, 1).Select
ActiveSheet.Paste
fin:
Next
End Sub
a+