Ignore #REF! when adding columns?

  • Thread starter Thread starter singlgl1
  • Start date Start date
S

singlgl1

I have a spreadsheet that updates links from other sheets daily. At th
bottom it tallies the monthly runing totals.Since some of the sourc
sheets do not have data yet entered, I get a #REF! in my cells tha
have no data, therefore my monthly accumalated also has #REF!.
How can I get it to ignore the #REF! and/or show these as blank?
Thanks-Gre
 
Of course you could edit each of your formulas with an IF statement to
check for error codes and, if exist, return "" (this would be a lot of
work, I'm thinking).

=IF(ISERROR(yourlinkhere),"",yourlinkhere)

However, this works for me and is only one cell to change:

=SUMIF(yourrange,">=0")+SUMIF(yourrange,"<0")

enter cell references to tally in place of 'yourrange'

This should ignore all cells with errors, text and the like.

Good Luck
 
Where #REF! is returned, you might change your formula to
=IF(ISNUMBER(your formula here),your formula here,"")

This will prevent REF! from returning, and the sum will evaluate
properly.
 

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

Oop's I did it again! 5
Using a #Ref! in a column Sum 3
#REF 3
Excel Sumproduct Ref error when table is closed 0
find and copy to another sheet 5
vlookup or IF 2
Displaying Data. 1
14 Day Average REVISITED 3

Back
Top