ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   I need a fx for counting numbers between numbers (between 18 - 59 (https://www.excelbanter.com/excel-worksheet-functions/222037-i-need-fx-counting-numbers-between-numbers-between-18-59-a.html)

Jen

I need a fx for counting numbers between numbers (between 18 - 59
 
I am trying to have excel count numbers that fall between certain numbers.
I.e. all numbers in column B that range from 18-59 (that include the #18 and
# 59). I have tried the COUNTIF fx but can only do "=18" and "<=59" This
ends up counting all numbers above 18 and all numbers below 59. I tried
BETWEEN 18 AND 59 but I obvoiusly don't know the appropiate language. Thanks
in advance. Jen

T. Valko

I need a fx for counting numbers between numbers (between 18 - 59
 
Try this:

=COUNTIF(B:B,"=18")-COUNTIF(B:B,"59")

Better to use cells to hold the boundary values:

D1 = 18
E1 = 59

=COUNTIF(B:B,"="&D1)-COUNTIF(B:B,""&E1)

--
Biff
Microsoft Excel MVP


"Jen" wrote in message
...
I am trying to have excel count numbers that fall between certain numbers.
I.e. all numbers in column B that range from 18-59 (that include the #18
and
# 59). I have tried the COUNTIF fx but can only do "=18" and "<=59" This
ends up counting all numbers above 18 and all numbers below 59. I tried
BETWEEN 18 AND 59 but I obvoiusly don't know the appropiate language.
Thanks
in advance. Jen




Shane Devenshire[_2_]

I need a fx for counting numbers between numbers (between 18 - 59
 
Hi,

Personally I like =COUNTBETWEEN(18,59) Just kidding, I've asked Microsoft
for a between function but no luck yet.

In 2003:

=SUMPRODUCT(B1:B100=18)*(B1:B100<=59))

In 2007:

=COUNTIFS(B1:B100,"=18",B1:B100,"<=59")

or you can replace the 18 and 59 with cell references, suppose A1 and A2

=COUNTIFS(B1:B100,"="&A1,B1:B100,"<="&A2)

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"Jen" wrote:

I am trying to have excel count numbers that fall between certain numbers.
I.e. all numbers in column B that range from 18-59 (that include the #18 and
# 59). I have tried the COUNTIF fx but can only do "=18" and "<=59" This
ends up counting all numbers above 18 and all numbers below 59. I tried
BETWEEN 18 AND 59 but I obvoiusly don't know the appropiate language. Thanks
in advance. Jen



All times are GMT +1. The time now is 09:48 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com