Try:
Private Sub CommandButton1_Click()
Dim ws As Worksheet
Dim sh As Worksheet
Dim bottomE As Long
Application.ScreenUpdating = False
Set sh = Sheets("Active Pursuits")
For Each ws In Worksheets
If ws.Name <> "Active Pursuits" And ws.Name <> "DO NOT USE" And ws.Name <> "Non-Affiliated Stadia and Arena" Then
If WorksheetFunction.CountIf(ws.Range("AE:AE"), "Yes") > 0 Then
bottomE = ws.Range("E" & Rows.Count).End(xlUp).Row
ws.Range("A1:AM" & bottomE).AutoFilter Field:=31, Criteria1:="Yes"
ws.Range("A4:A" & bottomE).SpecialCells(xlCellTypeVisible).Copy
sh.Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).PasteSpecial xlPasteValues
If ws.FilterMode Then ws.ShowAllData
End If
End If
Next ws
Application.CutCopyMode = False
Application.ScreenUpdating = True
End Sub
Bookmarks