I would think adding some code after your highlight code...i.e.
Dim nRow as Long
nRow = Sheet2.Cells(Rows.Count, "A").End(xlUp).Row + 1'Sheet2 the name of sheet you want to copy to
mycell.EntireRow.Copy Sheet2.Range("A" & nRow).PasteSpecial xlPasteValues
Bookmarks