Lowest value in a range

J

James

What formula do i use to find the lowest number in a set of figures, but
ignoring blanks and zero's
 
F

Frank Kabel

Hi
try the following array formula (entered with cTRL+SHIFT+ENTER):
=MIN(IF(A1:A100<>0,A1:A100))
 
A

Aladin Akyurek

=MIN(IF(Range,Range))

which you need to confirm with control+shift+enter instead of just wit
enter.
 
Top