Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Target, Range("E6:E100")) Is Nothing Then
Application.EnableEvents = False
Rw = Target.Row
ov = Target.Value
With Cells(Rw, 2)
.Value = IIf(ov <> "Clôturé", Date, .Value)
End With
Application.EnableEvents = True
End If
End Sub