We have a critical check box column (mark a task as critical) and then separately we have a R/G/Y column for task status. Critical & Status are not intrinsically linked and you can have a task in the red that isn't critical.
My goal has been to have the symbol column in the parent row change based on if critical is checked & status is red. Basically, I want to say if any of our critical tracks are in the red, the project goes red so we can review. I've tried IF(AND / IF(AND(CONTAINS and nested IF but it gives me an error every time.
I can achieve the result I'm looking for if I do one row of data at a time, but when I reference the columns (Crit and R/G/Y respectively) the formula breaks.
Are you not able to do the type of action I'm trying to perform or is this user error on my end?
Ex Formula:
=IF(AND({Sprint Schedule Range 1} = 1, {Sprint Schedule Range 2} = "Red"), "Red", "Yellow")
I've tried a few variations and I'm at a loss, any advice would be greatly appreciated.