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

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

Rendering JButton to get the JCheckBox behavior in a JTable by using images does not update my table -