View Single Post
  #2   Report Post  
JE McGimpsey
 
Posts: n/a
Default

I'd recommend that you fix the #DIV/0s instead - it's generally bad
practice to have "expected errors" on your sheet - it tends to mask or
desensitize one to other problems.

For instance, if you have something like

=A1/B1

where B1 is zero until a certain date, use

=IF(B10, A1/B1,"")

You can then use SUM, which ignores text.



In article ,
"Todd" wrote:

I have a column of data that links to another sheet I need a ytd total for.
The problem is that the cells contain formulas (on the feeding sheet) that
return #div/0! until the date has passed and data is entered into its
referring cells.

Is there a way I can sum these columns and ignore the #div/0! 's ? I had
been using a simple a20+a40+a60 type formula.