remove zero from min formula

F

Frenz

I've done the below formula but would like to omit zeros. How should i
proceed from here...?
=MIN((IF(S3=0,K3,0)),(IF(AG3=0,Y3,0)),(IF(AU3=0,AM3,0)),(IF(BI3=0,BA3,0)),(IF(BW3=0,BO3,0)),(IF(CK3=0,CC3,0)))
 
J

JLatham

Change all of your IF(CR=0 (wher CR is a column/row cell ID as S3, AG3, etc)
to
IF(CR<>0 [which will account for negative and positive non-zero values] or
IF(CR>0 [which would only examine positive non-zero values]

At least I think that's what you want.
 

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