Private Sub Worksheet_Change(ByVal Target As Range)
Dim Ligne As Long
If Target.Count > 1 Then Exit Sub
If Target.Column <> 1 Then Exit Sub
If Target = "Terminé" Then
With Sheets("Feuil2")
Ligne = Application.Max(.Cells(.Rows.Count, 1).End(xlUp).Row, 2) + 1
.Cells(Ligne, 2).Resize(, 12).Value = Target.Offset(, -9).Resize(, 12).Value
End With
Rows(Target.Row).Delete
End If
End Sub