Hello, I am trying to return a status for projects based on due date. I have a date column for Due Date that has some blanks and another column for the Status. In the Status column I have the following formula:
=IF(ISBLANK([Due Date]@row), "", IF(WEEKNUMBER([Due Date]@row) = WEEKNUMBER(TODAY()), "This Week"))
This is working but I would like to add a status for "Next Week", "2 Weeks" and "3 Weeks" so I can get a sense of what our month will look like. Also anything older but NOT this week should be "overdue" and everything else should be "future."
I can't seem to get it to work when I add these pieces. Any advice?
Thank you!