Hello, I am reaching out to the community for assistance.
I am trying to do a date range formula.
This following works:
=IF(ISBLANK([74. Discharge date]@row), "No Discharge",
IF([CRM 30 Day Done]@row = 1, "OK",
IF([74. Discharge date]@row > TODAY(+15), "", IF([74. Discharge date]@row < TODAY(+31),
"Past Due"))))
This is where I am trying to get now:
=IF(ISBLANK([74. Discharge date]@row), "No Discharge",
IF([CRM 30 Day Done]@row = 1, "OK",
IF(AND([74. Discharge date]@row > TODAY(+15), IF([74. Discharge date]@row < TODAY(+31)), “”,
IF(And[74. Discharge date]@row > Today(+32), "Past Due", IF([74. Discharge
date]@row < TODAY(+89)), “Past Due”,
“”)))))
Thank you for whoever takes the to share your thoughts!!!!