Hi tyson,
I have attached the sample file and below is the code for your reference.
Do add Reputation, if i helped in someway.
Sub autfil()
Range("A1:M1").AutoFilter
ActiveSheet.Range("$A$1:$M$6").AutoFilter Field:=8, Criteria1:="=*/*", Operator:=xlAnd
ActiveSheet.Range("$A$1:$M$6").AutoFilter Field:=9, Criteria1:=">0", Operator:=xlAnd
Range("A1").Select
Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.SpecialCells(xlCellTypeVisible).Copy
Worksheets(2).Activate
Range("A1").PasteSpecial
Application.CutCopyMode = False
Worksheets(1).AutoFilterMode = False
Worksheets(1).Range("A1").Select
End Sub
Bookmarks