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.
Hello Smartsheet Community! I created a formula that tracks the number of days away from the deadline that I posted on my dashboard as a visual for my students. =IF([Deadline Date]@row < TODAY(), "🔴 Past Due (" + ABS([Deadline Date]@row - TODAY()) + " days ago)", IF([Deadline Date]@row = TODAY(), "🟠 Due Today",…
Hello, I am trying to get this formula to work but am not having any luck. When I remove the last @cell….text below the formula works great. When I add it in I get an error. Any ideas? =COUNTIFS([ACCT READINESS STATUS PLV]:[ACCT READINESS STATUS PLV], OR(@cell = "PENDING LOCAL CAH", @cell = "ADDITIONAL REVIEW NEEDED LOCAL…
I have seen this question asked multiple times in the forum, but I couldn't find any clear answer provided in the answers. Please excuse me if a solution already exists, but if not, will someone please let me know if it is possible to use a previous cell value (from cell history) in a formula? I am specifically trying to…