PC Review


Reply
Thread Tools Rate Thread

average of column

 
 
lostinexcel
Guest
Posts: n/a
 
      24th Sep 2008
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.
 
Reply With Quote
 
 
 
 
RyanH
Guest
Posts: n/a
 
      24th Sep 2008
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.

 
Reply With Quote
 
Bernie Deitrick
Guest
Posts: n/a
 
      24th Sep 2008
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" <(E-Mail Removed)> wrote in message
news:4D4ADC21-3C5F-4ED8-9B9F-(E-Mail Removed)...
> 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.



 
Reply With Quote
 
lostinexcel
Guest
Posts: n/a
 
      24th Sep 2008
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.

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Insert text in column A and calculate the average from column B Sverre Microsoft Excel Programming 4 24th Apr 2009 09:07 AM
Insert a text in Column A and calculate the average from column B Sverre Microsoft Excel Programming 7 23rd Apr 2009 12:21 PM
compare cells in column to criteria, then average next column cell Bradwin Microsoft Excel Worksheet Functions 2 21st Jul 2008 08:37 PM
calculate average in a column based on criteria in another column =?Utf-8?B?c2hhcm9uIHQ=?= Microsoft Excel Misc 2 12th May 2006 06:07 PM
vba: Taking average of values in one column based on a corresponding value in another column eggsell Microsoft Excel Programming 7 5th Aug 2003 01:12 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:20 AM.