Hello,
I am counting the children of selected check boxes and then seting a ball color with formula bellow:
=IF(COUNTIF(CHILDREN(Comp15:Comp17), 0) = 2, "", IF(COUNTIF(CHILDREN(Comp15:Comp17), 0) = 1, "Red", IF(COUNTIF(CHILDREN(Comp15:Comp17), 0) = 0, "Green")))
This works fine but, when I have more than three checkboxes the formula gets complicated.
Is there a way to evaluate the following case:
if the result of Comp25:Comp35 = 0 the ball is Green, if the result of Comp25:Comp35 = 10 there is no ball, but if the result of Comp25:Comp35 is different than 0 or 10 the ball is red.
Thank in advance