Hello, I would like to know the JQL in order to change the color of the card based on the risk of the card ?
Ex :
4 and less is green
between 4 and 11 is yellow
12 and up is red.
Thx !
Hi @Yves Paquin
What type of field is Risk type. If it is number field JQL's should looks like this:
- 4 and less -> Risk <= 4
- between 4 and 11 -> Risk > 4 and Risk <= 11
- 12 and up -> Risk >= 12
Regards,
Seba
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Yves Paquin
I didn't want name of you field.
What type of data you can put in this field? Text, number or is it select list?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So it should be:
- 4 and less -> "Niveau de risque inhérent:" <= 4
- between 4 and 11 -> "Niveau de risque inhérent:" > 4 and "Niveau de risque inhérent:" <= 11
- 12 and up -> "Niveau de risque inhérent:" >= 12
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.