I'm using Smarthseet to manage a project work plan. I have used the formula below to automate RYGB balls.
=IF(AND([Target End Date]@row < TODAY(), NOT(ISBLANK([Target End Date]@row)), NOT(Status@row = "Complete"), NOT(ISBLANK(Status@row)), NOT(Counter@row > "0")), "Red", IF(AND([Target Start Date]@row < TODAY(), NOT(ISBLANK(Status@row)), NOT(Counter@row > "0")), IF(OR([% Complete]@row = "0", ISBLANK([% Complete]@row)), "Yellow", IF(AND([% Complete]@row > "0", [% Complete]@row < "1", NOT(ISBLANK(Status@row)), NOT(Counter@row > "0")), "Blue", IF(OR([% Complete]@row = "1", NOT(ISBLANK(Status@row)), Status@row = "Complete", NOT(Counter@row > "0")), "Green")))))
The fırmual is working well; however, I cannot see the green ball for one activity that I have completed before its Target start date. Any help?