Hi all,
I have a sheet with parent rows where the status column is updated with a RYG ball based on the completion date and due date of the row:
=IF(ISBLANK([Due Date]108), "", IF(ISDATE([Completed Date]108), "Green", IF(TODAY() - [Due Date]108 > 0, "Red", IF(TODAY() - [Due Date]108 > -7, "Yellow"))))
The children below this parent have the same formulas in their individual rows.
What I'd like to do now is add the ability to add a blue ball to the parent row based on any child row being completed. (So if the parent row does not have a completed date entered, blue would show that something is in process based on one of the child tasks).
I can get this to work to show the blue ball,
IF(COUNTIF(CHILDREN(), "Green") > 0, "Blue")
but I don't know if it is possible to combine the two formulas. Any help would be greatly appreciated!