Formulas and Functions

Formulas and Functions

Ask for help with your formula and find examples of how others use formulas and functions to solve a similar problem.

Am I able to create a formula that will advance the percentage complete based on start and End Date?

2»

Answers

  • @Todd Smelser, re: formula counting in the wrong direction…

    Going through your formula, I think you may have the last two parameters reversed. I changed to this, and it seemed to work. So, if Today is greater than finish row, 1; else, if today is less than start row, 0. Let me know if this works!

    =IFERROR(IF(ISBLANK(Start@row), "", IF(TODAY() > Finish@row, 1, IF(TODAY() < Start@row, 0, IF(AND(TODAY() > Start@row, TODAY() < Finish@row), ((1 / (Finish@row - Start@row)) * (Finish@row - TODAY()) / 1), IF(TODAY() > Finish@row, 1, IF(TODAY() < Start@row, 0, "")))))), "")

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!

Trending in Formulas and Functions