I have a project plan that I'd like to automatically update/change the status cell based on count if results for not started, in progress, and complete task counts. The formula I have so far is:
=IF(AND([Notes22]@row > 0, [Notes23]@row = 0, [Notes24]@row = 0), "Complete", IF([Notes23]@row > 0, "In Progress", "Not Started"))
The data type in the columns (Notes22 is Complete Count, Notes23 is In Progress Count, and Notes24 is Not Started Count) are the result of formulas (not numeric values directly inputted), could this be causing the issue? Please help!