Sub consolidator()
Dim ws As Worksheet
Dim rng As Range
For Each ws In Worksheets
Select Case LCase(ws.Name)
Case Is = "sheet4", "full list" 'add other worksheet names in lowercase on this line
Case Else
Set rng = ws.Range(ws.Cells(2, "A"), ws.Cells(ws.Rows.Count, "A").End(xlUp).Offset(0, 10))
With Sheets("Sheet4")
rng.Copy .Cells(.Rows.Count, "A").End(xlUp).Offset(1, 0)
End With
End Select
Next ws
End Sub
|