Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim tablo, i&, j%
With [test]
ReDim tablo(1 To .Rows.Count, 1 To 1)
For i = 1 To .Rows.Count
If .Cells(i, 22).DisplayFormat.Font.Color = 393372 Then tablo(i, 1) = "Oui": GoTo 1
For j = 10 To 19
If .Cells(i, j).DisplayFormat.Font.Color = 393372 Then tablo(i, 1) = "Oui": Exit For
1 Next j, i
.Columns(25) = tablo
End With
End Sub