View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Don Kline[_2_] Don Kline[_2_] is offline
external usenet poster
 
Posts: 28
Default Stopping a CountIf

It returned a 3 when I was expecting 20. I'll play with it some more. Thanks
for the reply.

"Sheeloo" wrote:

With your numbers in Col A, try this in B1
=MIN(IF(A1:A21<=0,ROW(A1:A20),""))
adjust 21 to your last row and press CTRL-SHIFT-ENTER after typing/pasting
the formula as it is an array formula

"Don Kline" wrote:

In a column I need to count how many rows from the start of the column are
greater then zero. The trick is once the value is a 0 or a negative, it is to
stop counting.

Maximum number is 121.

I have a macro that does this but am looking for a way to do this through a
formula.