Hi All,
I need help on a formula. In my current schedule the RAG is determined by % complete of task, desired% as on today and low tolerance. Here the parent level is indicating RED although child is in green and blue but no RED. Probably due the Desired % is more than the actual % but the actual % for child task is more than desired % and is in Green.
Here Smart sheet automatically calculates the actual % at parent level so the gaps seems to be between Desired % and Actual %.
Question: What will be the right solution to this, do I have to fix the Desired % complete or RAG formula and how.
Below are the formulas I have used and attached the screen shot of my schedule.
RAG: =IF(Start@row <> "", IF([% Complete]@row = 1, "Blue", IF(AND(Start@row > TODAY(), [% Complete]@row = 0), " ", IF(Duration@row = 0, " ", IF([% Complete]@row >= [Desired % Complete]@row, "Green", IF([% Complete]@row >= [Low Tolerance]@row, "Yellow", "Red"))))))
Desired % Complete:=[Days elapsed since Start]@row / Duration@row
Low Tolerance:=0.9 * ([Desired % Complete]@row)
Days elapsed since start:=NETWORKDAY(Start@row, TODAY())