Hello all,
I have an item list where I want to display some column color based on the value that will be the outcome of 2 dates.
I would like something like if it's zero, the column should be green, if it's between 0 and 30 days, it should be yellow and if more than 31 days, it should be red.
I'm trying to use this, but it's not working:
if ('{SFD:-4}' = 0)
select '#90EE90'
if ('{SFD:-4}' > 0 or '{SFD:-4}' <= 30)
select '#FFFACD'
else ('{SFD:-4}' > =31)
select '#FF6347'
I've also tried with elseif but it's not working.
Does anyone know how to make this work?
Thank you