Hello Community,
Having a hard time trying to figure out why my formula broke. Initially, the "As Built Accepted?" column was a checkbox and the formula was working correctly:
Column changed to date and the formula breaks. Changed the 1st condition to be a date, and added a couple of status additional to "Job Completed" and formula breaks (#UNPARSEABLE):
=IF(AND(ISDATE([As Built Accepted?]@row), "Job Completed", IF([Construction Status]@row = "On-Hold", "On-Hold", IF(ISDATE([Actual Construction Start]@row), "Construction in Process", IF([Construction Status]@row = Cancelled/Returned", "Job Cancelled/Returned", IF(ISDATE([Date sent to Construction]@row), "Sent to Construction", IF(ISDATE([Actual Design Completion Date]@row), "Design Completed", IF([Design Contractor]@row = "Asplundh Construction LLC", "Assigned to Designer")))))))
for managing this tracker, On-Hold and Cancelled/Returned can happen at any given time after the construction starts, so unsure where the error is.
Thanks!