Not sure if this helps?
![]()
Sub johnnypol() Dim ws As Worksheet For Each ws In ActiveWorkbook.Worksheets If ws.Name <> "Master" Or ws.Name <> "Desired outcome" Then ws.Range("A1:AB15").Copy Sheets("Master").Range("A" & Rows.count).End(3)(2) End If Next ws End Sub
Bookmarks