What do I call a blank cell?

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

Guest

My formula is IF(H27>0,H27,(M25+M26)*0.15). I want the test to include zero
in the true statement, but if I put >= it accepts blanks. How can I write
this?
 
Hi Nancy

The following formula seems to do the trick
=IF(OR(AND(H27<>"",H27=0),H27>0),H27,(M25+M26)*0.15)
hth
 
If H27 cannot be negative

=IF(H27="",(M25+M26)*0.15,H27)

or if it can

=IF(OR(H27="",H27<0),(M25+M26)*0.15,H27)
 

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