J
Jason Morin
I'm receiving an error on the >>>>> line. What's wrong?
iLastRow1 = Cells(Rows.Count, "A").End(xlUp).Row
For i = iLastRow1 To 1 Step -1
With Cells(i, 1)
If .Value = 1 Then
.EntireRow.Cut
With Sheets("Recent History").Range(Cells
(iLastRow, "A"))
.Paste
End With......
Try to cut and paste a row onto a new sheet in a specific
location, but XL won't except the Paste command.
Thx.
Jason
iLastRow1 = Cells(Rows.Count, "A").End(xlUp).Row
For i = iLastRow1 To 1 Step -1
With Cells(i, 1)
If .Value = 1 Then
.EntireRow.Cut
With Sheets("Recent History").Range(Cells
(iLastRow, "A"))
.Paste
End With......
Try to cut and paste a row onto a new sheet in a specific
location, but XL won't except the Paste command.
Thx.
Jason