I'm not sure why my formula isn't working. I also wonder if I can do Today(-7) in the formula. I've seen +days but not -days so maybe that's the issue? If so, how do I write it such that if the finish date is within the next 7 days, the bubble will be yellow? Here's the formula:
=IF(status@row = "Not Started", IF(start@row< TODAY, "Grey",
IF(status@row = "not started", IF(finish@row>= TODAY, "Red",
IF(status@row = "not started", IF(start@row> TODAY, "Red",
IF(status@row= "in progress", IF(finish@row>TODAY, "Red",
If(status@row="In progress", IF(finish@row >TODAY(-7), "Yellow"),
IF(status@row= "Complete", "Green"))))))