Support for Formula if ISBLANK

Options

Hi All,


I am stuck and need some help. I am unable to figure out how to return a blank if the Due Date is blank or the Status is COmplete. Can anyone help me adjust the formula I am using?

=IF(Status@row = "Complete", "", IF([Due Date]@row < TODAY() + 7, "Due in Next Week", IF([Due Date]@row < TODAY() + 15, "Due in Next 15 Days", IF([Due Date]@row < TODAY() + 30, "Due in Next 30 Days"))))

Best Answer

  • Mark Cronk
    Mark Cronk ✭✭✭✭✭✭
    edited 01/30/21 Answer ✓
    Options

    Try:

    =IF(OR(Status@row = "Complete",ISBLANK([Due Date]@row)),"", IF([due date]@row< TODAY() + 7, "Due in Next Week", IF([Due Date]@row < TODAY() + 15, "Due in Next 15 Days", IF([Due Date]@row < TODAY() + 30, "Due in Next 30 Days"))))

    Work?

    Mark


    I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.

Answers

  • Kelly Moore
    Kelly Moore ✭✭✭✭✭✭
    Options

    Try this

    =IF(OR(Status@row = "Complete", Status@row=""), "", IF([Due Date]@row < TODAY() + 7, "Due in Next Week", IF([Due Date]@row < TODAY() + 15, "Due in Next 15 Days", IF([Due Date]@row < TODAY() + 30, "Due in Next 30 Days"))))

  • Mark Cronk
    Mark Cronk ✭✭✭✭✭✭
    edited 01/30/21 Answer ✓
    Options

    Try:

    =IF(OR(Status@row = "Complete",ISBLANK([Due Date]@row)),"", IF([due date]@row< TODAY() + 7, "Due in Next Week", IF([Due Date]@row < TODAY() + 15, "Due in Next 15 Days", IF([Due Date]@row < TODAY() + 30, "Due in Next 30 Days"))))

    Work?

    Mark


    I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.

  • ABice Norton
    Options

    Thank you both so much for your quick help!

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!