Adding another IF Condition to my Current Formula

I'm looking to add this condition IF(Status@row <> "Complete", 0, 1) to my overall conditional formula below. Essentially I'm just adding the rule that if the status is complete than the value should be 1. I'm having issues embedding it in my existing formula, any advice?



=IF(ISBLANK(Start@row), 0, IF(Start@row <= TODAY(), NETWORKDAYS(Start@row, MIN(TODAY(), Finish@row)) / Duration@row, 0))

Tags:

Best Answer

  • Kelly Moore
    Kelly Moore Community Champion
    Answer βœ“

    Hey @Ryan Jared

    Try this.

    =IF(ISBLANK(Start@row), 0, Β IF(Status@rowΒ = "Complete",1, IF(Start@rowΒ <= TODAY(), NETWORKDAYS(Start@row, MIN(TODAY(),Β Finish@row)) /Β Duration@row, 0)))

    Will this work for you?

    Kelly

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!