Formula to change a parent row cell based on the values in the child rows.
Kcathy
✭✭
Hello. I am trying to create a formula to change the parent cell based on the values in the child cells. The cell values are blank, "Met" or "Unmet". Once all the child rows have the value of "Met" I need the parent row to change to "Met" and if any of the child rows have the value of "Unmet" or "blank" I need the parent row to show "unmet".
I am a new user to formulas, so I feel like this should be an easy answer, but I cannot find a formula that will work for me.
Tags:
Best Answer
-
Try something like this:
=IF(COUNTIFS(CHILDREN(), OR(@cell = "Unmet", @cell = ""))> 0, "Unmet", "Met")
Answers
-
Try something like this:
=IF(COUNTIFS(CHILDREN(), OR(@cell = "Unmet", @cell = ""))> 0, "Unmet", "Met")
-
This works!!! Thank you!!!!
-
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!