I am trying to create a formula that looks at two different start dates to set the project status. It looks at the first start date to see how far out (TODAY) is from that date and looks to see if there is a date in the second start date. This is what I have so far:
=IF(AND([Start Date]17 >= TODAY(+28), ISBLANK([Start Date]18)), "Green"), IF(AND([Start Date]17 <=TODAY (+28), ISBLANK([Start Date]18)), "Yellow"), IF(AND([Start Date]17 <=TODAY (+14), ISBLANK([Start Date]18)), "Red"
I also need to set a condition that if there is a date in [Start Date]18 then the project status changes to "Blue".
Any help would be appreciated. Thank you!