#DIV/0! ERROR

D

dbconn

I have a worksheet that has a number of rows in each of several different
categories. Before any information is entered, each row shows a 0 sum. When
information is entered in the first cell of a given row, a new sum is entered
for that row based on the formulas in the rows. In each category, the sums
column computes an average. I have that formula working so that it disegards
any 0's, but until the first cell in at least one row has something entered,
the average cell shows "#DIV/0!". I need to compute a master average of these
individual averages, but not all catgories will have information. My master
average shows #DIV/0! if any of the individual averages show the error. Any
ideas?
 
G

Gord Dibben

Get rid of the 0 sums until data entered.

=IF(COUNT(A1:C1)<2,"",SUM(A1:C1))

Your Average formula will ignore ""


Gord Dibben MS Excel MVP
 

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

Top