i have data that looks like the following:
2 7
1 5
2 7
1 4
2 7
I need a formula that will find how many time the number 7 is in the right
column and add up the corresponding number in the left column. So the answer
for this example would be 6, found 3 sevens in right column so added 2+2+2.
I tried an index(...,match( but couldnt get it to work. Please help.
Thanks.
Rick Rothstein (MVP - VB) - 15 Jun 2007 16:18 GMT
>i have data that looks like the following:
>
[quoted text clipped - 11 lines]
> I tried an index(...,match( but couldnt get it to work. Please help.
> Thanks.
Try this...
=SUMIF(B1:B5,"=7",A1:A5)
where I have assumed the first column of numbers is in A1:A5 and the second
column of numbers is in B1:B5.
Rick
Teethless mama - 15 Jun 2007 16:35 GMT
=SUMIF(B1:B5,7,A1:A5)
> i have data that looks like the following:
>
[quoted text clipped - 9 lines]
> I tried an index(...,match( but couldnt get it to work. Please help.
> Thanks.