Excel (non zero min value)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have column of totals calulated by using the sum of row elements. I want
to find the non zero minimum value. I tried to SORT but that didn't work.
Help menu suggested DMIN, but this also did not work for me. I am sure there
must be an easy answer. Please help.
 
Another way would be to change your summation formulas as follows.

=IF(YourSumFormula=0,"0",YourSumFormula)

Then the regular =MIN(C1:c10) would work to give you the minimum NUMBER of
what is left.

hth
Vaya con Dios,
Chuck, CABGx3
 
if all values are zero or positive another method would be
=small(range,countif(range,0)+1))
 
Back
Top