Try:
Sub test()
Application.ScreenUpdating = False
Dim LastRow As Long
LastRow = Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
ActiveSheet.Range("A1:I" & LastRow).AutoFilter Field:=1, Criteria1:=">=1"
ActiveSheet.Range("A1:I" & LastRow).SpecialCells(xlCellTypeVisible).EntireRow.Copy Sheets("Sheet1").Cells(1, 1)
If ActiveSheet.FilterMode Then ActiveSheet.ShowAllData
Application.ScreenUpdating = True
End Sub
Change "Sheet1" in the code to match the name of your destination sheet.
Bookmarks