Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How do I say this?
Count the values in D1:D150 that are between 86.81% and 86.83%? Thanks for reading this :) |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=Countif(D1:D150,"=86.81%")-Countif(D1:D150,"86.83%")
OR =Sumproduct((D1:D150=86.81%)*(D1:D150<=86.83%)) -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "Gaurav" wrote in message ... How do I say this? Count the values in D1:D150 that are between 86.81% and 86.83%? Thanks for reading this :) |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try one of these:
This one *includes* both boundaries: =COUNTIF(D1:D150,"=86.81%")-COUNTIF(D1:D150,"86.83%") This one *excludes* the boundaries: =COUNTIF(D1:D150,"86.81%")-COUNTIF(D1:D150,"=86.83%") If the numbers are all terminated at 2 decimal places then this might do just as well: =COUNTIF(D1:D150,86.82%) Format as GENERAL or NUMBER -- Biff Microsoft Excel MVP "Gaurav" wrote in message ... How do I say this? Count the values in D1:D150 that are between 86.81% and 86.83%? Thanks for reading this :) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
countif in a value range? | Excel Discussion (Misc queries) | |||
Countif between a range? | Excel Worksheet Functions | |||
CountIF Range | Excel Worksheet Functions | |||
COUNTIF or not to COUNTIF on a range in another sheet | Excel Worksheet Functions | |||
does the =COUNTIF have to be a range? | Excel Worksheet Functions |