I am trying to calculate the number of days a tasks is overdue. If the task has been completed, I would like it to be blank or return a "0". Here is the formula that I have tried and it returns unparseable
=IF(AND([Finish Date]@row < TODAY(), % Complete@row = "100"), "0", IF(AND([Finish Date]@row >= TODAY(), OR(% Complete@row = "<100"), "+" + ABS(TODAY() - [Finish Date]@row), TODAY() - [Finish Date]@row))