Sign in to join the conversation:
Hello Community,
I'm trying to get a sum of children cells if a checkbox in another column is checked.
For instance, if Column A has row 1 checked, I want the Column 10 row 1 counted as part of the sum.
Hi Craig,
Try this.
Formula: =SUMIF(CHILDREN(If@row); 1; CHILDREN([Total Test]@row))
Please see the attached link/screenshot for more information.
Sum children if checkbox is checked
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
I hope this helps you!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
Andree,
Thank you so much. This worked wonderfully!
This is the formula that worked for me.
=SUMIF(CHILDREN(If@row), 1, CHILDREN([total test]@row))
Great!
Happy to help!
This discussion was created from comments split from: Can't Edit or Delete "Send as Attachment" Recurrence.
I'm the admin of a workspace which contains 2 sheets: 1) "Source Dropdown Sheet" which should function as master dropdown list to feed other sheets (sample a US State dropdown column), and 2) "Source Sheet 1" in which I'm attempting to link the State column to reduce copy/pasting. However, after going through the process…
Hi there. I am working on several sheets that have a column called "Hours" which holds an hour estimate for task rows. I'd like for their parent rows to have a sum like "=sum(children())" so I can see how many hours are estimated for each project. My problem is that while I can manually set this for the rows, these sheets…