Multiple Criteria for COUNTIF and SUMIF

G

Guest

I have data in three columns. I need to count occurances and sum numbers
between these columns. I have used the following formulas to get one set of
data:

=COUNTIF(A:A,"Species")
=SUMIF(A:B,"Species",B:B)

Now I need to get to get the number sightings of animals (i.e. 1 group of 10
individuals observed at a certain distance) AND the number of individuals
(Col B) of species (Col A) observed at a certain distance (Col C) . For
example, elephant (Col A), 2 (Col B), >500 (Col C).

Can anyone please assist me?

Thanks, Nils
 
B

Bob Phillips

Nils,

It would be something like

=SUMPRODUCT((B2:B25>500)*(C2:D25="Species")*(A22:B25))

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

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