=MIN() Function

C

claude jerry

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
 
G

Gary''s Student

try the following array formula (entered with CTRL+SHIFT+ENTER):
=MIN(IF(A1:C5>0,A1:C5))
 
M

Mike H

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
 
C

claude jerry

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
 

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

Similar Threads


Top