Bonjour,
à tester,
ps/ j'ai renommé l'onglet "Septembre"
ÉDIT: j'avais oublié d'ajouter le mois
Sub Macro1()
Sheets("Global").Range("A2:C60000").ClearContents
mois = Array("Janvier", "Fevrier", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Decembre")
For i = LBound(mois) To UBound(mois)
lastrw1 = Sheets("Global").Cells(Rows.Count, 1).End(xlUp).Row + 1
lastrw2 = Sheets(mois(i)).Cells(Rows.Count, 1).End(xlUp).Row
addrA = Range(Cells(lastrw1, 1).Address, Cells(lastrw1 + lastrw2 - 2, 2).Address).Address
addrB = Range(Cells(2, 1).Address, Cells(lastrw2, 2).Address).Address
addrC = Range(Cells(lastrw1, 3).Address, Cells(lastrw1 + lastrw2 - 2, 3).Address).Address
Sheets("Global").Range(addrA).Value = Sheets(mois(i)).Range(addrB).Value
Sheets("Global").Range(addrC).Value = mois(i)
Next
End Sub