formula shows false

M

mike

I realize I needed to be clearer with my question. I have the following formula
=IF(AND(A2="poplar",B2>=1),2*C2*D2/144+0.05*C2*D2/144) this returns the word
FALSE in the target cell. Once I enter the correct information it will do the
math. Is there a way to not see the word FALSE on the sheet? I would rather
see a blank cell, or a 0.

Thanks,
Mike
 
P

Peo Sjoblom

=IF(AND(A2="poplar",B2>=1),2*C2*D2/144+0.05*C2*D2/144,"")


for blank or


=IF(AND(A2="poplar",B2>=1),2*C2*D2/144+0.05*C2*D2/144,0)


for zero

--


Regards,


Peo Sjoblom
 
J

John C

After your formula, and before the closing parenthetical, type a comma
followed by double quotes "" or by a 0 depending on what you prefer.
 
T

T. Valko

Try this:

=IF(AND(A2="poplar",B2>=1),2*C2*D2/144+0.05*C2*D2/144,"")

If you want a 0 just replace the quotes "" with a 0.
 
M

mike

Thanks John just what I wanted.
Mike

John C said:
After your formula, and before the closing parenthetical, type a comma
followed by double quotes "" or by a 0 depending on what you prefer.
 

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