Hello everyone I have solved all of my problems thus far thanks to your help and now I have one last issue on my current problem that I didn't think about until just now. The current code cuts rows that have been completed or placed on hold from sheet 1 to sheet 2 (complete) or sheet 3 (hold). On Sheet 1 how do I move the blank rows either to the bottom or delete them so that there are no gaps in the data? Thank you very much in advance.
Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Target.Column = 11 Then
Cancel = True
Target.Offset(, 2).Value = "IN PROGRESS"
Target.Offset(, 4).Value = Time
ElseIf Target.Column = 12 Then
Cancel = True
Application.EnableEvents = False
Target.Offset(, 1).Value = "COMPLETE"
Application.EnableEvents = True
Target.Offset(, 4).Value = Time
Target.EntireRow.Cut
Sheet2.Range("A5").EntireRow.Insert xlShiftDown
Target.EntireRow.Delete
ElseIf Target.Column = 14 Then
Cancel = True
Target.Offset(, -1).Value = "PARTIAL HOLD"
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Target = "" Then Exit Sub
If Not Intersect(Target, Range("M:M")) Is Nothing Then
If UCase(Target.Value) = "COMPLETE" Then
ElseIf UCase(Target.Value) = "PARTIAL HOLD" Then
Target.EntireRow.Cut
Sheet3.Range("A5").EntireRow.Insert xlShiftDown
Target.EntireRow.Delete
End If
End If
End Sub