Connect with peers, share your expertise, and inspire what’s next in Smartsheet — from proven practices to practical how-to insights from fellow users and product experts.
Sign in to join the conversation:
The posts in this section are historical and no longer monitored for accuracy. If this discussion interests you and you'd like to join in, please visit the active Community to post and engage.
I'm trying to get the numeric sum of the children of a parent when the date from another column is older than today.
I get #UNPARSEABLE when I try.
This is what I have:
csprocket777,
I have figured out a solution to your issue, but it involves adding one more column. I don't know whether you can achieve the desired result by modifying your formula, but ultimately it becomes simpler by breaking it into a two step process, as follows:
I am including a screenshot of the whole thing. Let me know if you have question.
Steve
So this is a formula that goes in each child cell? I was hoping to operate entirely in the parent row.
Let me try this...
This works. It would be ideal if I didn't have to copy the formula into each new row as rows are created and that it work in the parent row exclusively.
I get closer when I do something like this:
=SUM(COLLECT([Column3]:[Column3], [Column2]:[Column2], <TODAY()))
Hi csprocket777,
your original formula is wrong
=sumif(children([column2](your row number), <today(),children())
you were missing the row number to indicate the what is the parent cell
hope it can help