How would i add the children rows, that has the below sum?
Grandparent - SUM???
Parent - ="Total: " + COUNTIF(CHILDREN(), 1)
Child - Tick box
Hope this makes sense.
Hi Sharon I am going to take a stab at this one. Are you trying to get the sum and counts of checked children? In this case the grandparent will show the sum of checked children, and the parent will show the count of checked children? If so:
Grandparent:
=SUMIF(CHILDREN(CheckParentRow), 1, CHILDREN(AmountParentRow))
Parent:
=COUNTIF(CHILDREN(CheckParentRow), 1)
Hope that helps.
Yes that is what i was asking. Thank you so much. ...
Sorry yes, but what if you have multiple parent lines with the following sum,
="Total: " + COUNTIF(CHILDREN(), 1)
How do you count a cell that reads Total: 2, Total: 1 Total: 5 = 8
See attached image
Simply sum of the children. SmartSheet respects nesting and the relationship, so it will not consider grandchildren if you are looking for a sum of the parents.
Hey, Is anyone else facing this issue in the approval notifications sent through smartsheet
I have a sheet with a list of customers in one column, and then the following columns are City, Monday, Tuesday, Wednesday, Thursday, Friday. I need help with a formula that I can put in my sheet summary so that if the customer column says Staples (It can say this in multiple rows) that it will tell me the total package…
Hi Smartsheet community, I've always tried to answer questions but this is my first time posting. So I have formula =IF([Project Status]@row = "Complete", 1, 0) set up in the "Complete Check - Hide column" to check the box when the project status is marked complete. The project status column is tied to several other sheets…