#Value

  • Thread starter Thread starter Todd
  • Start date Start date
T

Todd

I have a formula that is A1-sum(A2:A5) in cell A6. The
numbers in the range A1:A5 are contingent upon other cells
and have formulas that link them to these other cells.
When no data is available for these cells the #Value
appears in the cell. I have several rows with these
formulas and then an overall total of A6:D6 in E6 but if
one cell in A6:D6 has the #Value then E6 does not total.
How can I keep the #Value from appearing and allowing E6
to total? Thanks for the help.

Todd
 
Todd,

You can wrap 'error handling' around your functions like this in cells A1
thru A6:

=IF(ISERROR(B2),0,B2)

Of course you will substitute the B2 for the real cells...
 

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