min, max functions

J

jtribe

in trying to find a min value, how do i exclude zeros from the list to be
looked at?
 
B

Biff

Hi!

Array entered with the key combo of CTRL,SHIFT,ENTER:

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

Biff
 
K

Ken Wright

That won't exclude zeroes. You can use SMALL but will still need to use
something like Biff's example, eg

=SMALL(IF(Rng<>0,Rng),1) array entered.

or

=SMALL(IF(Rng,Rng),1) array entered.
 

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