I know that you said that you "do not want a macro I have to run". This macro will run automatically when you change the status in column F of the "new" sheet. Copy and paste this macro into the worksheet code module. Do the following: right click the tab for your "new" sheet and click 'View Code'. Paste the macro into the empty code window that opens up. Close the code window to return to your sheet. Change the status in column F and that row will be copied to the appropriate sheet and deleted from the "new' sheet.
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("F:F")) Is Nothing Then Exit Sub
Application.EnableEvents = False
Application.ScreenUpdating = False
Select Case Target.Value
Case "delayed", "in process", "completed", "cancelled"
Target.EntireRow.Copy Sheets(Target.Value).Cells(Sheets(Target.Value).Rows.Count, "A").End(xlUp).Offset(1, 0)
Target.EntireRow.Delete
End Select
Application.EnableEvents = True
Application.ScreenUpdating = True
End Sub
The macro uses all lower case letters for your sheet names as you described in your original post. If this is not the case, change the sheet names in the code to match yours.
Bookmarks