Hi clintandcaden
This code is in the attached
Option Explicit
Sub test()
Dim LR As Long
Dim LC As Long
Application.ScreenUpdating = False
With Sheets("JOB LIST TRACKER").ListObjects("Table159")
.Range.AutoFilter Field:=7, Criteria1:="Y"
.Range.AutoFilter Field:=9, Criteria1:="<>X"
.AutoFilter.Range.Offset(1, 0).Copy
End With
With Sheets("Ready To Schedule")
LR = .Cells.Find(What:="*", SearchOrder:=xlRows, _
SearchDirection:=xlPrevious, LookIn:=xlValues).Row + 1
.Range("A" & LR).PasteSpecial
End With
With Sheets("JOB LIST TRACKER")
LR = .Cells.Find(What:="*", SearchOrder:=xlRows, _
SearchDirection:=xlPrevious, LookIn:=xlValues).Row
.Range("I5:I" & LR).Value = "X"
.ShowAllData
End With
Application.CutCopyMode = False
Application.ScreenUpdating = True
End Sub
...it appears to do as you require. Click the Button to run. Let me know of issues.
Bookmarks