SumIf Help

  • Thread starter Thread starter RoadKill
  • Start date Start date
R

RoadKill

Hello,

Here is my sumif presently: =SUM(IF(C5:C1000>=20%, IF(C5:C1000<30%,1,0))).

What I would like is to add column B to it as well where it looks for a
particular Supervisor and then add together the amount of people between 20
and 29.99%. This is what I would like to add: B5:B1000="John Doe".

Is this possible with sumif or do I need to go another route?

Thank you
 
Try this array formula:

=SUM((B5:B1000="John Doe")*(C5:C1000>=20%)*(C5:C1000<30%))

Or, this non-array version:

=SUMPRODUCT(--(B5:B1000="John Doe"),--(C5:C1000>=20%),--(C5:C1000<30%))
 
Both of you guys rock. Thanks much.

T. Valko said:
Try this array formula:

=SUM((B5:B1000="John Doe")*(C5:C1000>=20%)*(C5:C1000<30%))

Or, this non-array version:

=SUMPRODUCT(--(B5:B1000="John Doe"),--(C5:C1000>=20%),--(C5:C1000<30%))
 

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

Similar Threads

Count blanks by date 2
SUMIF for Text 2
SUMIFS function help 6
Sumif w/ relative column reference 4
SUMIF like formulae?? Any ideas? 2
SUMIFS help page online? 3
SUMIF Function 4
=SUMIF 2

Back
Top