2 réponses
Bidouilleu_R
Messages postés
1181
Date d'inscription
mardi 27 mai 2008
Statut
Membre
Dernière intervention
12 juillet 2012
295
29 avril 2010 à 14:27
29 avril 2010 à 14:27
le do ....loop est inutile
il vaut mieux faire un test if then
Comme ça tu auras du jaune clair
il vaut mieux faire un test if then
Comme ça tu auras du jaune clair
Sub Essai() Dim c As Variant For Each c In Range("E3:EE3") if c.value>14 then c.Offset(1, 0).Interior.ColorIndex = 36 end if Next c End Sub