Combine FREQUENCY and SUM of Associated Values

G

Guest

I have two columns of data:
Col A1:A200 are Distances (not all cells have values in them)
Col B1:B200 are Values associated with each Distance, but some Values are
positive and some are Negative
I have been successful in calculating the Frequency of the various values
within each Distance Bin (col C1:C10)
I need two more columns contiguous to the Distance Bin showing:
Sum of positive values for each frequency in the Bin
Sum of Negative Values for each frequency in the Bin

I tried:
{=SUM(IF(FREQUENCY(MATCH(A1:A200,C1:C10,1),MATCH(B1:B200:C1:C10,1))>0,""))}
for the positive Column, but get #NA

I would greatly appreciate any help and assistance.
 
B

Biff

Hi!

Sumproduct is much easier:

For positive values:

Enter this formula in D2:

=SUMPRODUCT(--($A$1:$A$200>$C1),--($A$1:$A$200<=$C2),--($B$1:$B$200>0),$B$1:$B$200)

Copy across to E2 then edit the formula in C2 and change: --($B$1:$B$200>0)
to --($B$1:$B$200<0)

Then select both D2 and E2 and copy down to row 10.

Biff
 
B

Biff

Feedback is always welcome!

There was a typo but it sounds like you figured it out:

Should read:

Copy across to E2 then edit the formula in E2 and change.........

Biff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top