=MIN() Function

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I Have values in a range A1:C5

which contains for eg. 1, 5, 200, 0, 18, 15 etc etc

I want to Find A minimun from this range but it should ignore Zero. and give
me a min other then Zero

Eg. for the above range =Min(A1:C5) gives = 0
I want it to give me 1 not Zero

Any help please
Claude
 
Claude

I got the range incorrect so
=MIN(IF(A1:C10=0,"",A1:C10))

It's now an array so Ctrl+Shift+enter
Note this formula ignores zero and allows negative numbers.

Mike
 
Thanks . its working Perfect

Mike H said:
Claude

I got the range incorrect so
=MIN(IF(A1:C10=0,"",A1:C10))

It's now an array so Ctrl+Shift+enter
Note this formula ignores zero and allows negative numbers.

Mike
 
Back
Top