Hi, I have a sheet with [Asset Status], [End of Life Date] and I'm trying to get a {red,green,yellow,gray} button returned. My formula below works as long as there is a date in [End of life date]. I'm out of ideas why.
=IF([Asset Status]@row <> "Active", "Gray", IF(AND([Asset Status]@row = "Active", [End of Life Date]@row = " "), "Gray", IF(AND([Asset Status]@row = "Active", [End of Life Date]@row > TODAY()), "Green", "Red")))
Ideas?