I'm trying to cut a row and paste it if it has the word done in column S.
This is the best I've been able to manage, but it just deletes the row.
Sub TESTMACRO()
'
' TESTMACRO Macro
' CUT LINE PASTE AND SORT
ActiveWorkbook.Sheets("ACTIVE ROYS JOBS").Activate
Dim rngA As Range
Dim cell As Range
Set rngA = Range("S1", Range("S65536").End(xlUp))
For Each cell In rngA
If cell.Value = "DONE" Then
cell.EntireRow.Cut
Sheets("COMPLETED JOBS").Select
Sheets("completed jobs").Range("A65536").End(xlUp).Offset(1, 0).Select
ActiveSheet.Paste
End If
Next cell