Current Statuses = "Complete", "Incomplete", "Pending" based on below formula:
=IF(NOT(ISBLANK([Recovery Collected Date]@row)), "Complete", IF(AND(ISBLANK([Recovery Collected Date]@row), ISBLANK([Anticipated Collection Date]@row)), "Incomplete", IF(AND(NOT(ISBLANK([Anticipated Collection Date]@row)), ISBLANK([Recovery Collected Date]@row)), "Pending", "")))
I would also like to add the status, "N/A" which will be based on a checkbox column. How can this be added to my current formula?