If my ootb you mean an ootb node solution then you’re probably out of luck. You will likely need to create your own custom function, at which point Python would be much faster.
def product(values : var[]..[])
{
length = DSCore.List.Count(values);
i = 0;
current = 1;
return = [Imperative]
{
while (i < length)
{
next = values[i];
current = current * next;
i = i+1;
}
return = current;
}
};
my first thought was also, this cant be done with OOTB nodes. but then I tried this just for kicks and it worked😅 who would have guessed that the math.evaulateformula would take numbers as a string type as parameters😂 multiplysublistOOTB.dyn (9.4 KB) .