![]() |
Fina number of records between 2 percentile values
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! |
=SUMPRODUCT((B1:B10=50%)*(B1:B10<=75%))
"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! |
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! |
All times are GMT +1. The time now is 11:16 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com