Function - counting based on criteria

C

Candace

I have a column of numbers. I need 3 formulas: (1) to count the numbers that
are 1 to 60, (2) to count the numbers that are 61 or more (3) to count the
rows in the column that are blank. Any assistance would be greatly
appreciated. Thanks.
 
D

Duke Carey

Oops - the first formula ought to be one of these two

=sumprooduct(--(A1:A100<=60),--(A1:A100>=1))
or
=countif(A1:A100,"<=60")-countif(A1:A100,"<1")
 
Top