If I have an Array Variable that has a structure like this:
[{
someprop: "string goes here",
numberToAdd: 2
},
{
//...etc.
}]
And I've got a number variable that I want to create from the aggregate of all the numberToAdd from the array variable both on load and when the Array is updated with a new item... how would I do that?
I've tried a few different potential paths with formulas and workflows, but I can't seem to figure this out...