New to formulas! Would love a review:
Flag if any of these bullets are met:
1) "Status" = Planning, In Progress, In review AND #times due date pushed is greater than 0
2) "Status" = Planning, In Progress, In review AND due date is in the past
3) "Status" = Roadblock OR Paused
4) "Health" = "Down"
Here's my failed formula:
=IF(AND([# Times End Date Pushed]@row > 0, AND(Status@row = "Planning", Status@row = "In Progress", Status@row = "In Review")), 1), IF(Health@row="Down",1), IF(AND(Status@row = "Planning", Status@row = "In Progress", Status@row = "In Review"), [End Date]<Today(),1), IF(Status@row = "Roadblock", Status@row="Paused"),1)