Attempting to make a status bubble roll up where the parent will turn green if there are any blank ("") cells except for when all child cells are blank. Below are some of my failed attempts:
IF(AND(COUNTIF(CHILDREN(), "") > 0, COUNTIF(CHILDREN(), "") <> COUNT(CHILDREN())), "Green")
results in blank cell only when all children are filled with a value that is not blank while being green if all children is blank
=IF(AND(COUNTIF(CHILDREN(), "") > 0, COUNTIF(CHILDREN(), "") <> 3), "Green")
I tried this to see what the equation is counting. It will be blank when all children are blank but also when all are filled.
Thanks