If compteur2 = 8 Then
For Each cell In Range(Cells(1, 13), Cells(3, 15))
'*********
'Pour verif
MsgBox Range(Cells(1, 13), Cells(3, 15)).Address
'**********
If cell.Interior.ColorIndex <> 3 Then
Cells(1, 2).Value = cell.Value
Cells(1, 2).Font.Bold = True
Cells(1, 2).Font.ColorIndex = 5
End If
Next cell
End If