Private Sub Worksheet_Change(ByVal Target As Range)
'
'
If Target.CountLarge = 1 And Target.Column = 14 And Target.Text = "En Cours" Then
Application.EnableEvents = False ' pour ne pas se mordre la queue
Target.EntireRow.Insert xlShiftDown
Application.EnableEvents = True
End If
End Sub