I am trying to auto update the status column based on the Due Date and Date Completed Columns.
=IF([Due Date]@row = "Not Enrolled Yet", "Not Required", IF(ISDATE([Date Completed]@row), "Complete", IF(AND([Due Date]@row < TODAY(), [Date Completed]@row = ""), "Overdue", IF(AND([Due Date]@row > TODAY(), [Date Completed]@row = ""), "In Future"))))
Its working good, but what I need is to say anything in the next 90 days, shows status as Upcoming, anything after 90 days so in future.