Thread: COUNT question
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gerard Sanchez Gerard Sanchez is offline
external usenet poster
 
Posts: 46
Default COUNT question

Hi,

In a range, B2:B23, I would like to count how many values are greater than
zero (0).

If count is an odd number, then "Unfilled Cell Present"
If count if even, then display count divided by 2.


Currently I have:

IF ( (CountIFs(B2:B23),"0")=ODD, "Unfilled Cell Present",
(Count(B2:B23))/2 ))

Problem is the ODD function here is not right . . . I think.

Anyone?