Sub IfEndIfCascade()
Dim Cell As Range
For Each Cell In ActiveSheet.UsedRange
If Cell.Interior.ColorIndex = 3 Then
If Cell.Font.Bold = True Then
If Cell.Font.Italic = True Then
If Cell.Font.ColorIndex = 7 Then
If Cell.Font.Name = 'Arial' Then
If Cell.Font.Size = 14 Then
If Cell.Font.Underline = xlUnderlineStyleSingle Then
If Not IsNumeric(Cell) Then
If Left(Cell, 1) = 'T' Then
If Len(Cell) = 7 Then
MsgBox 'il est possible que Thierry soit écrit dans cette cellule' & _
'qui est Rouge, avec une Police Gras, Italic, Rose, & _
'en Arial, taille 14 et soulignée !'
Else
MsgBox 'pas de cellule correspondant à tous ces critères trouvée !!!'
End If
End If
End If
End If
End If
End If
End If
End If
End If
End If
Next
End Sub