I have a status column that needs to update based on the date in the [Date Revised] column with a date formula that uses helper columns [BLANK],[Due in a Week], [Due in a month], and [Due more Than Month].
The formula I have currently is not working when it hits the Due in a month and Current parts. Not sure where I went wrong. any suggestions to help me get them working?
=IF(ISBLANK([Date Revised]@row), "", IF([Date Revised]@row <= TODAY(), "Overdue", IF([Date Revised]@row >= [Due Week]@row, "Due in a Week", IF([Date Revised]@row >= [Due in a Month]@row, "Due in a Month", "", IF([Date Expired]@row = [BLANK]@row, "Current", "")))))