Can someone help me add to the macro below to delete checkboxes with the row that is being deleted? The row is deleted per the macro, but the ticked checkbox transfers to new sheet.
Sub EndofCycle()
ActiveSheet.Copy After:=ActiveSheet
Columns("AS").Select
Selection.AutoFilter
ActiveSheet.Range("$AS$1:$AS$369").AutoFilter Field:=1, Criteria1:="TRUE"
Cells.Select
Selection.Delete Shift:=x1Up
Range("A1").Select
End Sub
Sub EndofCycle()
ActiveSheet.Copy After:=ActiveSheet
Columns("AS").Select
Selection.AutoFilter
ActiveSheet.Range("$AS$1:$AS$369").AutoFilter Field:=1, Criteria1:="TRUE"
Cells.Select
Selection.Delete Shift:=x1Up
Range("A1").Select
End Sub