#VALUE in a formula cell?

  • Thread starter Thread starter Fred
  • Start date Start date
F

Fred

How do I avoid getting an #VALUE response in a formula cell without
zero-filling all of the cells being added etc?
Very fustrating
 
Use the following Generic IF function:

=IF(ISERROR(YourFormula),"",YourFormula)

Example:

=IF(ISERROR(A1+A2),"",A1+A2)
 

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