Greetings
Hope everyone is doing well. I have a need for some guidance. I've used a similar formula in the past but I am having issues with this one. What am I trying to do: I have a status column and RTDD date column and Symbol column for the Harvey Balls (red, yellow, green, and gray)
I'm looking to have the balls color adjust based on the following criteria
If status is closed = Gray
If status is anything but closed and the dates are
within 7 days from due date = Red
within 14 days from due date = Yellow
All else is green
Formula I've crafted is below but I am getting the infamous Unparseable error
=IF(Order Status@row = "Closed", Gray, If(AND([RTDD Date]@row < TODAY(+7), Order Status@row <> "Closed"), "Red", IF(AND([RTDD Date]@row <= TODAY(+14), [TDD Status]@rowOrder status ]@row <> "Closed"), "Yellow", "Green")))
Any help is appreciated