Help calculating the state (Status) column so I don't have to manually update it

Irina
Irina ✭✭
edited 04/24/21 in Formulas and Functions

Here is the formula I am using:

=IF([% Complete]@row = 0, "Not Started", IF([% Complete]@row = 100, "Complete", "In Progress"))

The "Not Started" and "In Progress" work well, but not the 100% complete.


Best Answer

  • Mark Cronk
    Mark Cronk ✭✭✭✭✭✭
    Answer ✓

    Hi Irina,

    Try:

    =IF([% Complete]@row = 0, "Not Started", IF([% Complete]@row = 1, "Complete", "In Progress"))

    Mark


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

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!