Hello, I need a formula to identify if the task dates that have been entered are either "Past due", "Not due this month", or "Yes, due this month"
A little context, our Program Managers have monthly tasks that need to be completed each month. Program Managers input the dates within that month.
For example, for June 2024, all Program Mangers will enter June 2024 dates for different tasks. I would like help with generating a formula to indicate whether within the month of June 2024 the dates state "Past due", "Not due this month", or "Yes, due this month". We have 6 month authorizations and put future dates so that should reflect "Not due this month" and if dates within June should say Yes due this month. Etc.
This is what I have so far, I just cant figure out how to make a formula to say whether within the month of June it says "Yes, due this month".
=IF(C25="","Not due this month", If(C25<Today(),"Past due",IF(C25>Today(), "Not due this month")))
A little context, our Program Managers have monthly tasks that need to be completed each month. Program Managers input the dates within that month.
For example, for June 2024, all Program Mangers will enter June 2024 dates for different tasks. I would like help with generating a formula to indicate whether within the month of June 2024 the dates state "Past due", "Not due this month", or "Yes, due this month". We have 6 month authorizations and put future dates so that should reflect "Not due this month" and if dates within June should say Yes due this month. Etc.
This is what I have so far, I just cant figure out how to make a formula to say whether within the month of June it says "Yes, due this month".
=IF(C25="","Not due this month", If(C25<Today(),"Past due",IF(C25>Today(), "Not due this month")))