I want to have a formula in my status column that makes the status "overdue" if completed column is not checked and finish date is in the past and "on schedule" if otherwise. The formula I have below is giving me a circular reference error.
Current Formula:
=IF(AND(Completed@row = 0, Finish@row < TODAY()), Status@row = "Overdue", Status@row = "On Schedule")