abracadabraPDF › Forums › PDF – Général › Script couleur d’une cellule en fonction d’une plage de valeurs › Répondre à : Script couleur d’une cellule en fonction d’une plage de valeurs
4 juin 2019 à 13:16
#65791
bebarth
Maître des clés
C’est donc que je ne l’ai pas comprise !
Je relis…
On va écrire ça plus simplement :
Code:
if (this.event.value>=8 && this.event.value<12) {
this.event.target.fillColor=color.red;
} else if (this.event.value>=12 && this.event.value<=20) {
this.event.target.fillColor=color.green;
} else {
this.event.target.fillColor=color.white;
}
this.event.target.fillColor=color.red;
} else if (this.event.value>=12 && this.event.value<=20) {
this.event.target.fillColor=color.green;
} else {
this.event.target.fillColor=color.white;
}
…aux bornes près !
@+
:bonjour: