Hi,
We have an expression rule (see below image). We want to get the indices of numbers from the array (local!numberList) that would not make the local!initialValue negative when added together.
The result we are expecting from the sample values in the image is: {1, 2, 3, 5}
If we have local!initialValue = 100 & local!numberlist = {5, 100, 15, 100, 25}, the result should be: {1, 3, 5}
We're having a hard time thinking of the way we can do this. Would gladly appreciate your help.
Discussion posts and replies are publicly visible
Can you ellobrate what does added together means?
Let's say for iteration 3, we are indexing item 1, 2, and 3 from the local!numberList, which value is {5, 10, 15, 100, 25}, so the value that the sum() function would return in this iteration is 30. 100 - 30 = 70, so in this case the index should be returned.