Help with #N/A

  • Thread starter Thread starter Al G
  • Start date Start date
A

Al G

If I am adding a column that has an #N/A, it returns an #N/A. How can I get
it to work?

I used an if statement where: =if(+B5="#N/A",0,+B5)- it did not work.

Help.

Thanks.
 
First of all, remove the leading '+' signs.

Second, to test for #N/A, use ISNA():

=IF(ISNA(B5),0,B5)

- Jon
 

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

Similar Threads


Back
Top