Hi I've just copied the code back and its working OK.
It's probably because your destination sheet name does not MATCH the sheet name in the code.
They must be exactly the same:- Sheet Name = "active list" (without the Inverted Commas.)
The code below is the same as the old code but with a message Box.
You don't really need it because if your code is working the row you select (With the mouse) will be left Blank after the code has run.
Try again
Dim Rng As Range, Rw As Integer
On Error Resume Next
Set Rng = Application.InputBox(prompt:="Please Select Row", Title:="Transfer Data", Type:=8)
Rw = Sheets("active list").Range("A" & Rows.Count).End(xlUp).Row + 1
Rng.EntireRow.Cut Sheets("active list").Range("A" & Rw)
MsgBox "Transfer Complete"
Regards Mick
Bookmarks