View Single Post
  #3   Report Post  
JE McGimpsey
 
Posts: n/a
Default

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)))


In article ,
"coo-too" wrote:

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!