wwbwb said:
How can I find the lowest number, not equal to 0, in a column. I have a column, I9:I60. I need to find the smallest number, but not any zeros.
If I9:I60 is not supposed to house any neg values, then either:
=MIN(IF(I9:I60>0,I9:i60))
which must be confirmed with control+shift+enter instead of just enter.
or:
=SMALL(I9:I60,COUNTIF(I9:I60,0)+1)
Otherwise:
=MIN(IF((I9:I60<>0),I9:i60))
which is also to be confirmed with control+shift+enter.