Average of a changing numbers of cells???

  • Thread starter Thread starter FISH
  • Start date Start date
F

FISH

I'm new to Excel (using 2002) and have a spreadsheet with several entries
tracking results for each participant. I want to be able to get the average
result for all participants. The issue is the number of participants
increase daily.

For example: The results are from J9-J63 now, but new entries keep adding to
the J column. The results can be from 1st to 10th and I want to be able to
automatically get the average result for all participants.


What formula can I use that will calculate the average of an ever growing
range of cells? Something to the effect of taking the total number of
entries in column J (whatever it happens to be at the time) and divide by
the total of column J.


Thanks in advance...
 
Excel will ignore text and empty cells.

So maybe you could just use:
=average(J2:J65536)
or
=average(J:J)
(don't put this formula in column J, though)
 
Have you tried the Average() function?

It will *not* include blank cells in the calculation, so if you simply
oversize the references in the formula, you should be OK.

=AVERAGE(J9:J1000)
--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================
 
Did the trick, thanks guys...


Dave Peterson said:
Excel will ignore text and empty cells.

So maybe you could just use:
=average(J2:J65536)
or
=average(J:J)
(don't put this formula in column J, though)
 

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

Average Question 2
Average Function 4
averaging numbers 5
Averaging data 3
Averages 4
Excel Sumproduct 0
SUM / COUNT formula 3
Excel 2007 average formula 3

Back
Top