Date that works with drop down list

Rorrick Smith
edited 12/09/19 in Smartsheet Basics

Is there a way to create a if statement that works based off the selection of a drop down list, and if that selection hasn't been made by a certain date is displays "incomplete"

Comments

  • Paul Newcome
    Paul Newcome ✭✭✭✭✭✭

    Where would you want "Incomplete" displayed? To have the dropdown automatically display it, you would need to automate every option within the dropdown as you can have either automated OR manual entry, not both, in a cell. If you wanted it in a different cell, you would just need a simple IF(AND( statement along the lines of...

     

    =IF(AND(ISBLANK([Dropdown Column Name]@row), TODAY() > insert date criteria here), "Incomplete")