Count if Children Rows are Completed
Hi All,
I need a formula that counts how many children tasks don't have a completed date entered yet. See the screenshot below.
My formula is:
=COUNTIFS(CHILDREN(Task@row), <>"", [Completed Date]:[Completed Date], "")
However, it returns an incorrect argument.
Any suggestions would be greatly appreciated!
Answers
-
Your second range should also be a CHILDREN function.
CHILDREN([Completed Date]@row)
-
Thanks, @Paul Newcome!
The new formula I entered was:
=COUNTIFS(CHILDREN(Task@row), <>'', CHILDREN([Completed Date]@row),"")
For some reason, that returned a "#UNPARSEABLE".
Did I do something wrong?
-
You're missing the second quote after <>.
You have
<> "
You need
<>""
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!