Count if Question
I have a formula I am trying to figure out -
It is a parent/child formula
needs to be
- one condition met in one column
- one of 2 possible conditions met in another column
Keep getting error
Here is my formula for now -
=countifs(children([Issue Type]@row, "defect", children(OR(Status@row, "New", "In Progress"))))
Best Answer
-
Try somethign more like this:
=COUNTIFS(CHILDREN([Issue Type]@row), @cell = "Defect", CHILDREN(Status@row), OR(@cell = "New", @cell = "In Progress"))
Answers
-
Try somethign more like this:
=COUNTIFS(CHILDREN([Issue Type]@row), @cell = "Defect", CHILDREN(Status@row), OR(@cell = "New", @cell = "In Progress"))
-
Thanks @Paul Newcome ! worked like a charm
-
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!