I hit the post button too quick.
Sub CommandButton1_Click()
lr2 = Worksheets("Sheet2").Cells(Rows.Count, 1).End(xlUp).Row
Worksheets("Sheet1").Range("A1

").Cut Worksheets("Sheet2").Range("A" & lr)
CutCopyMode = False
End Sub
"Bobbykm" wrote:
> I am entering info into Excel Sheet1 A1, B1, C1, D1. I want to click a
> button (Submit) to move info to Sheet2 A1, B1, C1, D1. After I click button
> I would like Sheet1 to be ready for new entries which when Submit is clicked
> again will be moved to next rows on Sheet2 (A2, B2, C2,D2).
>
> thanks
> Bobby
>