#n/a

  • Thread starter Thread starter Mike Davis
  • Start date Start date
M

Mike Davis

How do have Excel default the #n/a to display a zero by using a MACRO
 
You dont have to use a macro for this, wrap your formula in a isna:
if(isna(formula),"0",formula)

basically the same thing if you do it in a macro.
 
If the #N/A is caused by a lookup or match formula, then you can do
this to your formula:

=IF(ISNA(your_formula),0,your_formula)

Hope this helps.

Pete
 

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