Merci de votre proposition. Malheureusement, je ne m'en sors pas, ça m'indique une erreur.... Ce sont les chiffres de la colonne H qui doivent être modifiés
J'ai donc entré votre code comme suit :
Sub test()
'Macro par Dan pour dop3 - xl pratique -18/08/08
Select Case Range("A1:H9")
Case Is = 0
With Range("A1:H9")
.Interior.ColorIndex = 15
.Font.Strikethrough = False
End With
Case Is > 0
With Range("A1:H9")
.Interior.ColorIndex = -4142
.Font.Strikethrough = True
End With
End Select
End Sub