Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("D1:D3")) Is Nothing Then
If Application.CountIf([L:L], [D3]) > 0 And LCase([D1]) = "ok" Then
Shapes("ZoneTexte 1").Visible = msoFalse
Else
Shapes("ZoneTexte 1").Visible = msoTrue
End If
End If
End Sub