I am making an assumption that you want to move the entire row. Select any
cell on the desired row and fire this.
You need NOT goto the destination sheet.
Sub cutrowtosheet()
mr = ActiveCell.Row
Rows(mr).EntireRow.Cut
Sheets("sheet2").Rows(1).Insert shift:=xlDown
Rows(mr).Delete
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(E-Mail Removed)
"Luis A. Vázquez" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>i have this simple code.
>
> all it does is cut the selection copy it on another page and return to
> the original page. when back in the original page it should delete the
> empty row that is left from the cut.
>
> it does the job but is giving me debug error.
>
> Sub updated()
> Selection.Cut
> Sheets("Sheet2").Select
> Rows("1:1").Select
> Selection.Insert Shift:=xlDown
> Sheets("sheet1").Select
> Selection.Delete.Row
>
> End Sub
>
> ideas?
>