Combining IF Formula for Blank/ Not Blank Cells

I want to create a formula that provides the below statuses:

-Complete: Based on "Collected Date" not null

-Incomplete: Based on "Collected Date" null and "Antcipated Collected Date" null

-Pending: Based on "Anticipated Collcted Date" not null and "Collected Date" null


Below is what I have, but it's unparseable:


=IF(NOT(ISBLANK([Recovery Collected Date]@row)), "Complete", "Incomplete"), IF(AND(NOT(ISBLANK([Anticipated Collection Date]@row), (ISBLANK([Recovery Collected Date]@row), "Pending"))))

Best Answer

  • Frank S.
    Frank S. Community Champion
    Answer ✓

    Greetings @brownrobe,

    Here is a possible solution for your 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", "")))

    Please confirm I have your column names correct and adjust as needed.

    I hope this helps, and have a great weekend.

    Frank Smith, PMP

    Assistant Director | IT Special Projects Mgr.

    Oregon Parks & Recreation Department

    If my response helps, please mark it as an accepted answer. 😎

Answers

  • Frank S.
    Frank S. Community Champion
    Answer ✓

    Greetings @brownrobe,

    Here is a possible solution for your 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", "")))

    Please confirm I have your column names correct and adjust as needed.

    I hope this helps, and have a great weekend.

    Frank Smith, PMP

    Assistant Director | IT Special Projects Mgr.

    Oregon Parks & Recreation Department

    If my response helps, please mark it as an accepted answer. 😎

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!