Thread: Count function
View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Shane Devenshire[_2_] Shane Devenshire[_2_] is offline
external usenet poster
 
Posts: 3,346
Default Count function

Hi,

One way to do this is:

=SUMPRODUCT(--(A1:A9=3),--(A1:A9<=4))



--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Ranjith Kurian" wrote:

I have a column called as COST as shown below, i need a excel formula to pick
the data count from cost column to my count column based on Cost Range column.
example:
Cost column
3
3.5
4
2
2.5
1

Cost Range column count column
4-3
2-1

Answer expected:

Cost Range column count column
4-3 3
2-1 3

Count column is nothing but it should count less than 4 and greater than 3
(3,3.5 and 4 are the answers)