A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Right-click on Sheet1 tab and "View Code" to open module.
Copy this code into Sheet1 module and when you enter Completed in column I that row will be cut and moved to next available row in Sheet2
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
On Error GoTo enditall
Application.EnableEvents = False
If Target.Cells.Column = 9 Then
n = Target.Row
If Me.Range("I" & n).Value = "Completed" Then
Me.Range("A" & n & ":" & "I" & n).Cut _
Destination:=Sheets("Sheet2").Cells _
(Rows.Count, 9).End(xlUp).Offset(1, 0) 'edited (rows.count, 1) to 9
End If
End If
enditall:
Application.EnableEvents = True
End Sub
Gord