Hi
I have a symbols (rggy) column "Overview Status" that looks at two columns Expiry Date and Overview Date. I would like that if expiry date is less than today to be gray, but if the overview date getting close to today to be yellow, red if it's late and green if it's OK. I would like the yellow warning to be a month before today. I'm not sure what I'm doing wrong with the formula
IF([Expiry Date]1 < TODAY(), "Gray", IF(AND([Overview Date]1 > TODAY(-30), [Overview Date]1 < TODAY()), "Yellow", IF([Overview Date]1 >= TODAY(), "Green", IF([Overview Date]1 < TODAY(), "Red"))))