Sumproduct - I think - Counting occurances that fall into criteria

C

ckemtp

Howdy y'all,

I would like to use the sumproduct command, I believe, to count the cells
that have ranges of income levels in a certain county. I have a large amount
of data sorted by counties with hypothetical people in there. Each individual
hypothetical person has their gross income level in a field. I would like to
break down the income levels by $10k increments and I need sumproduct to
count the occurances of for example, hypothetical residents of Adams County
with income levels betweek $1k and $10k.

No idea how to do this. Any help will be appreciated.
 
R

RagDyer

Column A = Name
Column B = Income
Column C - County

County to look in entered in D1
Lower income level in D2
Upper income level in D3

=Sumproduct((C2:C1000=D1)*(B2:B1000>=D2)*(B2:B1000<=D3))
 

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


Top