Hoping someone may be able to spot my error. Attempting to return 1 of 5 statuses (Complete, Not Started, Late, Pending, or In Progress). I think the challenge is with the Pending status, where I am trying to flag a due date within 7 days of today.
=IF([Percentage Complete]1 = 1, "Complete", IF([Due Date]1 < TODAY(), "Late", IF([Start Date]1 > TODAY(), "Not Started", IF(AND([Due Date]1 > TODAY(), TODAY() > [Due Date]1 - 7, "Pending", "In Progress")))))
Thanks!