Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then
Select Case Target.Value
Case "OK"
Target.Font.Bold = True
Target.Font.Color = RGB(0, 0, 0)
Target.Interior.Color = RGB(0, 255, 0)
Case "En Cours"
Target.Font.Bold = True
Target.Font.Color = RGB(0, 0, 0)
Target.Interior.Color = RGB(255, 255, 0)
Case "A Faire"
Target.Font.Bold = True
Target.Font.Color = RGB(0, 0, 0)
Target.Interior.Color = RGB(255, 0, 0)
Case "Stand By"
Target.Font.Bold = True
Target.Font.Color = RGB(255, 255, 255)
Target.Interior.Color = RGB(0, 100, 255)
Case Else
Target.Font.Bold = False
Target.Font.Color = RGB(0, 0, 0)
Target.Interior.Color = RGB(255, 255, 255)
End Select
End If
End Sub