Average function

H

Harriet

I am trying to create a daily average in a spreadsheet. Here is my situation.

I have a row of sums of columns that I want to average. Data is filled into
the columns daily in a month so there are days that have no data as that date
hasn't gotten here yet, but there is a '0' in the sum row because of the sum
function because there are line items in the column that are filled in when
the day arrives.

How do I create a 'running' DAILY average so that it does not count the '0'
fields in the average?

Example is dated columns, 4/1/2009, 4/2/2009, etc., each with lines items
beneath that populate a 'sum' total say of volume. I want to create a
running daily average field that shows what the average is as of the last
data entered.

I was thinking something like =Average (B18>0:i18>0) but this sure isn't
working!

Thanks!
 
G

Gary''s Student

In general =AVERAGE() will ignore blanks, but accept zeros. One technique is
to force zeros to become blanks. For example, if you have

=SUM(A1:A10)
use:
=IF(SUM(A1:A10)=0,"",SUM(A1:A10))
 

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