How to calculate non-zero minimum value?

  • Thread starter Thread starter yhoy
  • Start date Start date
Y

yhoy

I have a list of data. want to get the lowest non-zero value. How to set up
the formula?

Thanks!
 
If the values are in A1:A10 then you can use an array formula which must be
entered with Ctrl+Shift+Enter, not just Enter

=MIN(IF(A1:A10<>0,A1:A10))

Tyro
 
You're absolutely right.

However, as I mentioned in a thread yesterday concerning averaging without
zeroes, the transition from positive to negative predisposes the presence of
zeroes.

Therefore, one can assume ... no 0's ... no negatives.

Though your point is well taken, since we never actually know how or where
our suggestions will be used.
--

Regards,

RD
 
.... or abused.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______


RagDyeR said:
You're absolutely right.

However, as I mentioned in a thread yesterday concerning averaging without
zeroes, the transition from positive to negative predisposes the presence
of
zeroes.

Therefore, one can assume ... no 0's ... no negatives.

Though your point is well taken, since we never actually know how or where
our suggestions will be used.
--

Regards,

RD
-----------------------------------------------------------------------------------------------
Please keep all correspondence within the Group, so all may benefit !
-----------------------------------------------------------------------------------------------

"David Biddulph" <groups [at] biddulph.org.uk> wrote in message
But I don't think that formula works correctly if there are negative
numbers?
 

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

Back
Top