#N/A part deux

S

sixthhole

I used the suggested function =IF(ISNA(C81),"0",C81) which worked fine.
However, the following formulas resulted in an answer of "0" which was
incorrect. The last formula did not recognize that a value was greater than
zero.

value in B12 is 99.506
value in C12 is #N/A
value in D12 is #N/A

F12 is =IF(ISNA(B12),"0",B12) this returned 99.506
G12 is =IF(ISNA(C12),"0",C12) this returned 0
H12 is =IF(ISNA(D12),"0",D12) this returned 0
I12 is =IF(F12>G12,F12,G12) this returned 0 when it should be 99.506

Where did I get off track?
 
B

Bob Phillips

The problem is caused by using text zero in your formula, "0". Chang it to a
numeric zero 0 and all will be well.

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

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