ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   average of column (https://www.excelbanter.com/excel-programming/417523-average-column.html)

Lostinexcel

average of column
 
This is a really simple one for most of you, but I'm trying to do the average
of one column, put the average in the cell below the column, then copy that
average across several other columns to the right.

RyanH

average of column
 
Use the AVERAGE() Function in a cell. Select the cell you want the average
in and type this: =AVERAGE(A1:A30)

You will have to change the range to fit your needs.

Hope this helps!
--
Cheers,
Ryan


"lostinexcel" wrote:

This is a really simple one for most of you, but I'm trying to do the average
of one column, put the average in the cell below the column, then copy that
average across several other columns to the right.


Bernie Deitrick

average of column
 
Say that you want to average columns A through D with the numbers starting
in row 2:

Sub PutInAverages()
Dim myRow As Long
myRow = Cells(Rows.Count,1).End(xlUp).Row
Cells(myRow +1,1).Resize(1,4).Formula = "=AVERAGE(A2:A" & myRow & ")"
End Sub


HTH,
Bernie
MS Excel MVP

"lostinexcel" wrote in message
...
This is a really simple one for most of you, but I'm trying to do the
average
of one column, put the average in the cell below the column, then copy
that
average across several other columns to the right.




Lostinexcel

average of column
 
Thank you for the response. It worked.

"lostinexcel" wrote:

This is a really simple one for most of you, but I'm trying to do the average
of one column, put the average in the cell below the column, then copy that
average across several other columns to the right.



All times are GMT +1. The time now is 09:03 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com