Multiple IF AND ISBLANK Criteria in Formula

What I'm trying to accomplish:

  1. If [Approved] is checked, change [Status] to "Complete"
  2. If [Ad RSS Link], [Subject Line], and [Done] are not blank, change [Status] to "Proofing"
  3. If [Ads Entered] is checked, change [Status] to "Proofing"
  4. If none of the above are true, [Status] will be "Waiting for Information"

Here is the formula I'm using, but it keeps coming back as UNPARSEABLE. I've looked it over and retyped it a few times to no avail. Am I missing something?

=IF(NOT(ISBLANK([Approved@row])), "Complete", IF(AND(NOT(ISBLANK([Ad RSS Link]@row)), NOT(ISBLANK([Done]@row)), NOT(ISBLANK([Subject Line]@row)), "Proofing", IF(NOT(ISBLANK([Ads Entered]@row)), "Proofing", "Waiting for Information"))))

Thank you so much for the help and insight!

Tags:

Best Answer

  • Paul Newcome
    Paul Newcome ✭✭✭✭✭✭
    Answer ✓

    Try this:

    =IF(Approved@row = 1, "Complete", IF(OR([Ads Entered]@row = 1, AND([Ad RSS Link]@row <> "", [Subject Line]@row <> "", Done@row <> "")), "Proofing", "Waiting For Information"))


    The two issues I see with your formula are:

    1. Your first cell reference has a misplaced square bracket after "@row" instead of after the column name.
    2. You have a closing parenthesis at the very end of the formula that needs to be moved to NOT(ISBLANK([Subject Line]@row)) so that it closes out the AND statement.

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!