Private Sub CommandButton1_Click()
Dim ws1, ws2 As Worksheet
Dim lstrow As Integer
Set ws1 = Sheets("Data_Entry")
Set ws2 = Sheets("Check_Out")
ActiveCell.EntireRow.Copy
lstrow = ws2.Cells(65536, "A").End(xlUp).Row + 1
ws2.Range(lstrow & ":" & lstrow).PasteSpecial
Application.CutCopyMode = False
End Sub
|