Sub ConsolidateData()
Dim ws As Worksheet
Sheets.Add.Name = "allyears"
For Each ws In ThisWorkbook.Sheets
With ws
If ws.Name <> "allyears" Then
.Range("A11:B" & .Cells(Rows.Count, 1).End(xlUp).Row).Copy
Sheets("allyears").Cells(Rows.Count, 1).End(xlUp).Offset(1).PasteSpecial xlPasteValues
End If
End With
Next ws
End Sub
Bookmarks