Forum Discussion
papabear89
Apr 04, 2019Copper Contributor
Index Match row problem
In the attached spreadsheet, I have set up the formula to sum the set of numbers in column A until a negative number is encountered in row 5. I need to have the formula in the adjacent columns to su...
- Apr 04, 2019I haven’t tested, but you may try, this formula in B11, copied across to C11:
=SUM(B1:INDEX(B1:B10,
MATCH(-1,INDEX(SIGN($A1:$A10),
0),0)-1))
papabear89
Apr 04, 2019Copper Contributor
TwifooThank you for responding. Your answer worked given the information I gave earlier but I realize now that the parameters were not set up correctly. I've attached another spreadsheet with more accurate parameters. If I use your formula with the new set of numbers, the returned answer is not correct.
Twifoo
Apr 04, 2019Silver Contributor
I haven’t tested, but you may try, this formula in B11, copied across to C11:
=SUM(B1:INDEX(B1:B10,
MATCH(-1,INDEX(SIGN($A1:$A10),
0),0)-1))
=SUM(B1:INDEX(B1:B10,
MATCH(-1,INDEX(SIGN($A1:$A10),
0),0)-1))
- papabear89Apr 04, 2019Copper ContributorThat worked. Thank you very much. I'm going to have to dig into the formula to gain full understanding but it definitely accomplished what I wanted.
- TwifooApr 04, 2019Silver ContributorTo understand what each formula argument returns, select it then press F9. Thereafter, press Ctrl+Z to revert to the original formula. I’m delighted to have helped you accomplish your goal.