Auto average function

G

Guest

In Excel there is an autosum function. When you are in an empty cell below a
range of data this function puts the sum of the range above into the empty
cell.
I was wondering if it is possible to adapt this function so that, instead of
a sum, it calculates a different statistical value like average, number,
stdev?
My idea would be an extra button in the toolbar with auto... which opens a
checkbox menu from which you can choose the statistical function (sum, stdev,
average etc) that should apply to the range.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...dg=microsoft.public.excel.worksheet.functions
 
R

rae820

There is a way...if you go to insert--function, the category dropdow
box and look at statistical. then you get all sorts of functions yo
are looking for...
=average(c1:c23)
=stdev(c1:c23)... for exampl
 
S

swatsp0p

I'm using XL 2003 and it has the exact feature you are asking for. It
is the dropdown arrow next to the AutoSum 'E' on the tool bar. It
offers:

Sum
Average
Count
Max
Min
...plus a link to the Insert Function dialog box.

HTH

Bruce
 
G

Guest

rae820 said:
There is a way...if you go to insert--function, the category dropdown
box and look at statistical. then you get all sorts of functions you
are looking for...
=average(c1:c23)
=stdev(c1:c23)... for example

It is too many clicks away before I get the function. I have now found a vb
workaround that des the trick for me. The code is as follows:

Sub VariableAverage()

Dim strFrom As String
Dim strTo As String

strFrom = ActiveCell.Offset(-1, 0).Row
If strFrom = "" Then Exit Sub
strTo = ActiveCell.Offset(-1, 0).End(xlUp).Row
If strTo = "" Then Exit Sub

ActiveCell.FormulaR1C1 = "=average(R" & strFrom & "C:R" & strTo & "C)"

End Sub
 

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