Minimum but One??

T

twogoodtwo

Can anyone tell me how I can look up the "minimum but one" in a range of
cells??

There must be a way

Thanks in advance
 
G

Gary''s Student

If you want the minimum use
=SMALL(A1:A100,1)
if you want the 2nd smallest value then use
=SMALL(A1:A100,2)
 
Top