Counting number of values in an array larger than a selected field in excel -
for example, have simple array [1,2,3,4,5] , want find number of items in array greater or equal 3. if use countif(array,">=3") output of 3, obviously. want able reference cell, lets a7. assuming a7 = 3 if use =countif(a1:a5,">=a7") return 0.
i'm assuming has letter , if remove "" marks still doesn't work. must overlooking simple right?
you can't include cell reference in quotes, instead should work:
=countif(a1:a5,">="&a7)
Comments
Post a Comment