Counting Checkboxes for Children
Getting an unparseable error when i do this:
=COUNTIFS(DESCENDANTS([Final and Locked]824, 1))
Basically, I just want it to automatically count the number of checkboxes in the next column so when new children are added by other users, I don't need to worry if the formula is capturing the new rows.
Comments
-
It's just a basic issue with parenthesis.
=COUNTIFS(DESCENDANTS([Final and Locked]824), 1)
Try this...
-
I am trying to do something similar. Except, the condition is that all children have to be checked in order for the parent to auto check the box. Can you help?
-
@Ray B First choose a column that has data in it for every row that you want to check against.
=COUNT(DESCENDANTS([Other Column]@row))
will give you the count for how many there should be.
=COUNTIFS(DESCENDANTS(), 1)
will give you the count for how many are.
Comparing the two in an IF statement to say that if those two numbers match then check this box would then look like this...
=IF(COUNTIFS(DESCENDANTS(), 1) = COUNT(DESCENDANTS([Other Column]@row)), 1)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!