Fina number of records between 2 percentile values

G

Guest

How do i find the number of test scores between the 50th and 75th percentile?
Formula using now is
=countif(data cells in range, "<=" &value of 75th percentile) -countif(data
cells in range, ">" &value of 50th percentile) -number of records -1

Thanks in advance!
 
J

JE McGimpsey

One way:

=COUNTIF(rng,"<="&PERCENTILE(rng,0.75)) -
COUNTIF(rng,"<"&PERCENTILE(rng,0.5))

alternatively:

=SUMPRODUCT(--(rng<=PERCENTILE(rng,0.75)),
--(rng>=PERCENTILE(rng,0.5)))
 

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