Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I hav got the following numbers:
A 45 54 12 32 55 78 65 45 I want to use the count how many of this is within the ranges 0-40 41-80 Please can someone advice on how to wtrite the function. bimseun 11-20 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way:
0-40: =COUNTIF(A:A,"<=40") - COUNTIF(A:A, "<0") 41-80: =COUNTIF(A:A,"<=80") - COUNTIF(A:A, "<=40") Alternatively: 0-40: =SUMPRODUCT(--(A1:A100<=40),--(A1:A100=0)) 41-80: =SUMPRODUCT(--(A1:A100<=80),--(A1:A10040)) In article , "bimseun" wrote: I hav got the following numbers: A 45 54 12 32 55 78 65 45 I want to use the count how many of this is within the ranges 0-40 41-80 Please can someone advice on how to wtrite the function. bimseun 11-20 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() If your numbers are all greater than or equal to zero and in range A1:A10 =COUNTIF(A1:A10,"<=40") If the above formula is in B1 then for 41-80 =COUNTIF(A1:A10,"<=80")-B1 -- daddylonglegs ------------------------------------------------------------------------ daddylonglegs's Profile: http://www.excelforum.com/member.php...o&userid=30486 View this thread: http://www.excelforum.com/showthread...hreadid=504465 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Tue, 24 Jan 2006 06:13:02 -0800, "bimseun"
wrote: I hav got the following numbers: A 45 54 12 32 55 78 65 45 I want to use the count how many of this is within the ranges 0-40 41-80 Please can someone advice on how to wtrite the function. bimseun 11-20 =COUNTIF(rng,"=0") - COUNTIF(rng,"40") However, depending on your application, you might be better served using the FREQUENCY worksheet function. --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Checking Winning Numbers in the Lottery. | Excel Discussion (Misc queries) | |||
Using COUNTIF to find numbers within a range greater than the mean | Excel Worksheet Functions | |||
How can I change positive numbers to negative, i.e. change 50 to - | Excel Discussion (Misc queries) | |||
Sorting when some numbers have a text suffix | Excel Discussion (Misc queries) | |||
GET NON-ZERO RESULTS USING STDEV FOR CERTAIN NUMBERS | Excel Worksheet Functions |