Hello!
I'm trying to create a formula based on status color for my office Smartsheet for 2022. It's blank, but I've been putting in test data to try it out. I haven't done this in so long so I'm out of practice, and used the old formula as reference from my past job. It's all showing up as Blue, no matter what date I put in.
Here's what I'm trying to do: ("Due Date" is a Date format)
Blue = Done (from the "Done" column that's a checkbox)
Red = 3 days prior to due date
Yellow = 5 days prior to due date
Green = 7 days prior to due date
Here's the formula I used:
=IF(ISBLANK([Due Date]@row), "", IF(ISBOOLEAN(Done@row), "Blue", IF(TODAY() >= [Due Date]@row + 3, "Red", IF(TODAY() >= [Due Date]@row + 5, "Yellow", IF(TODAY() >= [Due Date]@row, "Green")))))
Any suggestions?
I appreciate your help in advance! Thanks so much!