#VALUE! error

D

dim

Hi...again...Im sure this is really simple....

I've put in a formula:
=IF(I9="y","mm Used This Job"),IF(K9="y","cm Used This Job")

It works fine until the second IF, then I keep getting a #VALUE! regardless
whether the letter 'y' is in the relevant cell.

Any ideas?
 
M

Max

Maybe you meant to do this:
=IF(I9="y","mm Used This Job",IF(K9="y","cm Used This Job",""))
 
P

Pete_UK

Try it this way:

=IF(I9="y","mm Used This Job",IF(K9="y","cm Used This Job",""))

You'll get a blank if neither of the cells contain a y.

Hope this helps.

Pete
 
D

dim

Thanks folks, thats the one. Amazing the differance a well placed paran here
and a moved comma there can make! ;-) L8rs.
 

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