isna HELP

  • Thread starter Thread starter Paul T
  • Start date Start date
P

Paul T

Hi

Having a nightmare trying to change the #n/a to 0 {zero}

this is the formula

=IF((AJ4="H")+(AM4="H"),"HH",FALSE)

maybe it's obvious but I could do with a fresh pair of eyes on it.

Many thanks

Paul T
 
Hi Anne

Appreciate the fast response, but unfortunately still getting the same #n/a
?

Regards

Paul T
 
If you're getting #N/A with

=IF((AJ4="H")+(AM4="H"),"HH",FALSE)

it's because either AJ4 or AM4 contains #N/A. Perhaps this:

=IF(NOT(ISNA(AK4&AM4)),IF(AK4&AM4="HH","HH"))
 
Hi

Thank you very much

It worked!!!

I would never of got this in a month of Sundays!

Thanks again

Paul T
 

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