Hello,
I am trying to create a Sheet Summary field to let me know if the overall project is late. I have the below formula which seems to not be working:
=IF(AND(MAX(Finish:Finish) < TODAY(), MAX(Status:Status) <> "Complete"), 1, 0)
My logic is to take the max finish date and see if it is less than today, in addition I want to check that that task's status is not equal to "Complete".
Any assistance would be appreciated. I am a SmartSheet formula n00b. Thanks,