In bases, I have one property that is a list of numbers. I’m trying to add/sum all the elements from that list into an other property with a formula.
For instance I have a “Costs” list: [10, 10, 20], the expected result from the formula would be: 40.
Things I have tried
I saw that a reduce() function was added to lists in version 1.10.0, but I can’t make it work, and didn’t find any documentation or exemple.