Hi there,
I have a list, and I want to sum the values of the nested lists into a new list. However, Neither math.sum
nor List.Reduce
is working for me.
I have a varying number of Level @3 lists inside Level @4 lists
So, I just want to sum all P1’s/P2’s/P3’s and P4’s.
I have tried to flatten the original one, but then it came out with null values. Then, using the ‘List.ReplaceNull’ node, the null values were replaced with zeros. However, I’ve now lost the original list in which my values were grouped by a certain parameter.