Private Sub TextBox1_Change() 'Recherche date
Application.ScreenUpdating = False
Range("c2:c365").Interior.ColorIndex = 2
If TextBox1 <> "" Then
For ligne = 2 To 365
If Cells(ligne, Range("date").Column) Like "*" & TextBox1 & "*" Then
Cells(ligne, Range("date").Column).Interior.ColorIndex = 37
End If
Next
End If
End Sub