Hey @Anonymous,
Could we get some more details on what scope you want the colours to fall in - I am going to assume all values up until 1 are Green, 1 to 2 are orange and anything greater than 2 is red - would that be correct?
I am going to try to make the code more visually-friendly so that you don't have to dissect it several months later when reviewing it:
If(
//Condition 1
Value(Lastupdate.Text)>=0 && Value(Lastupdate.Text)< 1,
Chartreuse,
//Condition 2
Value(Lastupdate.Text)>=1 && Value(Lastupdate.Text)<=2,
Yellow,
//Else condition (any value larger than 2)
Red
)
Can we assume that your Lastupdate is a label and that it shows numbers values such as 1.5 ?
Let me know if this helps or if you need any further information with implementing this,
Cheers,
Sancho