Hello Smartsheets Community!
I have another dilemma with one of the formulas some of you help me with. I was asked if there was a way to write the formula in the scheduled health column so that even at 0 % Complete that the schedule health ball changes to yellow when the end date is in range of the part of the formula that turns the ball yellow with out having to put a numeric value in the % Complete column.
For example, if you look at the first screen shot below. You can see that the End Date is scheduled for 10/29/21 and % Complete is at 0% and the ball color is grey. It only turns yellow as soon as you put a numeric value in the % complete column; second screen shot below.
Is this feasible and if so, how do I adjust my current formula:
=IF(OR(AND([% Complete]@row = 0, [End Date]@row > TODAY()), [% Complete]@row = 1), "Gray", IF(AND([% Complete]@row < 1, (TODAY() - [End Date]@row) > 0), "Red", IF(AND((TODAY() - [End Date]@row) > -3, [% Complete]@row < 1), "Yellow", IF([End Date]@row > TODAY(), "Green"))))