In WF Fusion, I need to add a number from a bundle until it gets to a certain point then stop. Say I have 4 bundles with 1,2,4,8 and I need to make the number equal to 7. How would I add each bundle one by one and move on to the next step when the combined value equals 7, aka only the first 3 bundles pass through while the last gets discarded
1st bundle
1 !>= 7
2nd bundle
1+2 !>= 7
3rd bundle
1+2+4 >= 7
Since equal or greater stop accepting bundles and move to next step
Here is a coding example
Output: