Excel (non zero min value)

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.
 
G

Guest

try the following array formula (entered with CTRL+SHIFT+ENTER):
=MIN(IF(A1:Z1>0,A1:Z1))
 
G

Guest

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
 
G

Guest

if all values are zero or positive another method would be
=small(range,countif(range,0)+1))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top