hiding #N/A

  • Thread starter Thread starter Shaun
  • Start date Start date
Shaun,

One way would be to change your formulas so that you don't
het the #N/A (it looks ugly on the worksheet anyway).

Basic format is:

=IF(ISNA(yourformula),"",yourformula)

John
 
modify your formula so it doesn't produce #N/A

=if(iserror(formula),"",formula)
 
Use the ISNA() worksheet function to test the outcome
of another function, like (pseudo):

=IF(ISNA(SomeOtherFunction);"";SomeOtherFunction)

Krgrds,
Perry
 

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