Hello Kaz09. Without seeing your file, try this code:
Option Explicit
Dim Flag As Boolean
Private Sub Worksheet_Change(ByVal Target As Range)
If Flag = True Then Exit Sub
If Not Intersect(Target, Range("F:F")) Is Nothing Then
If Target.Value = "Contract signed & received" Then
Target.EntireRow.Copy
Sheets("New Clients").Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).PasteSpecial
Flag = True
Target.EntireRow.Delete
ElseIf Target.Value = "Business Lost" Then
Target.EntireRow.Copy
Sheets("Lost Business").Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).PasteSpecial
Flag = True
Target.EntireRow.Delete
End If
End If
Application.CutCopyMode = False
Flag = False
End Sub
Bookmarks