Salut,
Faire le test de clignotement dans la boucle.
Public Sub Clign()
'Programmation de l'évènement toutes les secondes
Temps = Now + TimeValue("00:00:01")
Application.OnTime Temps, "Clign"
'Affiche l'alerte ou la fait disparaître (alternativement)
With ThisWorkbook.Sheets("FINALE")
' Faire le test ici
If .Cells(26, 21) <> .Cells(26, 23) Then
'Texte
.Range("Q19").Font.ColorIndex = IIf(.Font.ColorIndex = 2, 1, 2)
'Dessin
.Shapes("Champion").Visible = Not .Shapes("Champion").Visible
Else
'Texte
.Range("Q19").Font.ColorIndex = 1
'Dessin
.Shapes("Champion").Visible = False
End If
End With
End Sub