T
Tim Zych
If I have a list of numbers:
1
2
3
4
5
5
I want to return the number of cells that sum to X.
If X is 6, the value returned should be 3 (sum of 1,2,3),
starting at the beginning of the list and moving downward.
If X is 9, the value returned should be 4.
Thanks.
1
2
3
4
5
5
I want to return the number of cells that sum to X.
If X is 6, the value returned should be 3 (sum of 1,2,3),
starting at the beginning of the list and moving downward.
If X is 9, the value returned should be 4.
Thanks.