Hi There! I have 2 formulas that I would like to combine together. They both work independently, but i can't seem to figure out how to combine them.
Formula 1:
=IF(OR([Phase Health]3 = "Red", [Phase Health]3 = "Yellow"), "Yellow")
Formula 2:
=IF((((COUNTIFS(CHILDREN(Status@row), OR(@cell = "Not Started", @cell = "In Progress"), CHILDREN([Key Milestones]@row), 1, CHILDREN([End Date]@row), TODAY() - @cell > 6))) > 0), "Red", IF((((COUNTIFS(CHILDREN(Status@row), OR(@cell = "Not Started", @cell = "In Progress"), CHILDREN([Key Milestones]@row), 1, CHILDREN([End Date]@row), TODAY() < @cell))) > 0), "Green", IF((((COUNTIFS(CHILDREN(Status@row), OR(@cell = "Not Started", @cell = "In Progress"), CHILDREN([Key Milestones]@row), 1, CHILDREN([End Date]@row), TODAY() - @cell <> 6))) > 0), "Yellow")))
I've tried a few iterations and it always results in the "#UNPARSEABLE" error message.
Would someone be able to help guide me on what I need to do to combine these?
Thank you!