Hi Smarties,
I am trying to get this formula right in the Formula Challenge from Smartsheet. I am not sure what I did wrong so hoping fellow Smarties could help!
In the Parent Row symbols column, write a formula that returns the most common value of its children.
If there are equal or more reds than yellows or greens, the parent status should be red.
If there are equal or more yellows than reds or greens, the parent status should be yellow.
If there are equal or more greens than reds or yellows, the parent status should be green.
Otherwise, the parent status should be blue.
----------------
I have started with the formula below and tried every different criterions, still not successful. I just need to get Green in the "If there are equal or more reds than yellows or greens, the parent status should be red."
I thought this formula would have worked, but when I changed all Children rows to Yellow, it shows Red, when it is supposed to show "Blank" if using the formula below?
=IF(COUNTIFS(COUNT(CHILDREN()), "Red") >= COUNT(CHILDREN()), "Yellow", "Red")