Having a hard time with formula logic. The setup for a RYGB column:
- If the row is a parent row, I want it to do (X), where is as an elaborate string of calculations based on a another column's values
- If it isn't a parent row: AND IF it is complete, then I want a BLUE Harvey ball, else, a GREEN Harvey ball
Can this be done? I've tried the following and getting an #INVALID DATA TYPE error:
=IF(COUNT(CHILDREN()) > 0, "Yellow", AND(IF([% Complete]@row = 1, "Blue", "Green")))
Note: "Yellow" in the above is just a placeholder until I can get this much working. Later, I'll fold in the calculations for what to do when it is a Parent row.