Thread: Count function
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ashish Mathur[_2_] Ashish Mathur[_2_] is offline
external usenet poster
 
Posts: 1,766
Default Count function

Hi,

Suppose data is in range C4:C9. Enter 4 in C13, 3 in D13, 2 in C14 and 1 in
D14. In cell E13, enter
=COUNTIF($C$4:$C$9,"="&D13)-COUNTIF($C$4:$C$9,""&C13) and copy down

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Ranjith Kurian" wrote in message
...
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)