As a result of the latest release and supposed "formula enhancements", we now have more than 100 client-facing project sheets whose "status" column is entirely broken. Previously our status column looked at the task Start Date, End Date, and Target Date, and intelligently spit out a text value such as Due Soon, In Progress, Threatened, and so on. After the release, 100% of those cells are now broken with #INVALID OPERATION
Here's an example cell from one of our status columns:
=IF(AND(ISDATE([Target Date]3), [Target Date]3 - Start3 < -1), "Threatened", IF(Done3 <> 1, IF(Start3 - TODAY() > 1, IF(TODAY() - Start3 > -4, "Starting Soon", "Scheduled"), IF(End3 - TODAY() > 0, IF(TODAY() - End3 > -4, "Due Soon", "In Progress"), "Overdue")), "Completed"))
We've been doing our own troubleshooting trying to figure out what exactly has become "Invalid" but have been unsuccessful so far, so we've had to resort to manually typing in the status of these for the time being.
This is absolutely unacceptable. We need assistance on this, or an explanation for a fix we can make ourselves, or a proper patch on the release, ASAP.