Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need a fucntion that allows me to count if in a range of numbers how many
are greater than (for example) 250 but less than (for example) 2000... can Countif do this? If not, how should I go about it? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In another column insert the test formula: =AND(A1250, A1<2000), then count
the number of cells in that column containing TRUE. "WBTKbeezy" wrote in message ... I need a fucntion that allows me to count if in a range of numbers how many are greater than (for example) 250 but less than (for example) 2000... can Countif do this? If not, how should I go about it? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=COUNTIF(A:A,"<2000")-COUNTIF(A:A,"<250")
-- HTH RP (remove nothere from the email address if mailing direct) "WBTKbeezy" wrote in message ... I need a fucntion that allows me to count if in a range of numbers how many are greater than (for example) 250 but less than (for example) 2000... can Countif do this? If not, how should I go about it? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You could get there with sumproduct, but countif can handle it in two steps:
=countif(a:a,"250")-countif(a:a,"=2000"). "WBTKbeezy" wrote: I need a fucntion that allows me to count if in a range of numbers how many are greater than (for example) 250 but less than (for example) 2000... can Countif do this? If not, how should I go about it? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do I count the number of times text in column A matches text i | Excel Worksheet Functions | |||
Number count - postcodes and need to count the numbers of tim... | Excel Discussion (Misc queries) | |||
How to count the number of times something occurs within a certain month | Excel Worksheet Functions | |||
Count number of times a specific number is displayed in a cell ran | Excel Worksheet Functions | |||
Need to Count number of occurrences and get percentage of total | Excel Worksheet Functions |