Min()

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

Guest

hi,

I have the following as a cell formula:

=MIN(P5:P65000)

I would like to add a condition to this Min() to make sure it only retrieves
the Min() where the value in column I is not null.

HOW?

Thanks in advance,
geebee
 
M IN ignores empty cells already.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
=MIN(IF(I5:I65000="","",P5:P65000)
Then press Ctrl+Shift+Enter as this is an array formula

Charles Chickering
 

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

Back
Top