if / and / isblank formula

If my status is closed, but I did not put a date in the date closed column, I need it flagged. Can someone help write this formula? I am using =IF(AND(ISBLANK([Date Closed]@row), Status@row, "Closed"), "High", "Low") and get the error #INVALID DATA TYPE

Tags:

Best Answer

  • Nick Brisson
    Nick Brisson ✭✭✭
    Answer ✓

    Your formula should work, it sounds like the cell you are entering the formula into is not set to Text/Number

    The below formula would work as well

    =IF(AND([Date Closed]@row = "", Status@row = "Closed"), "high", "low")

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!