Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 16
Default Formula to average last 25 entries in a column?

Guess I have a duel question.
First, I have numerous columns of data, all numerical. New entries are
entered at the end of the column. Is there a formula to average just the
last 25 entries in the column? (Bottom of column up)
Second question pertains to the ability to "auto populate". I have a column
of names. (three dozen). I would then like to auto populate the single
column of names, matching the names with the average data obtained from the
above. (average of last 25, 50, 100,etc entries) Data changes daily?
Any help would be greatly appreciated.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default Formula to average last 25 entries in a column?

Hi,

Average last 25 entries

=AVERAGE(OFFSET(A1,COUNTA(A:A)-25,):OFFSET(A1,COUNTA(A:A),))

I don't understand the second question
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"Going Crazy with excel" wrote:

Guess I have a duel question.
First, I have numerous columns of data, all numerical. New entries are
entered at the end of the column. Is there a formula to average just the
last 25 entries in the column? (Bottom of column up)
Second question pertains to the ability to "auto populate". I have a column
of names. (three dozen). I would then like to auto populate the single
column of names, matching the names with the average data obtained from the
above. (average of last 25, 50, 100,etc entries) Data changes daily?
Any help would be greatly appreciated.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 16
Default Formula to average last 25 entries in a column?

Sorry Mike, I know what I want, just don't know how to say it.
Maybe an example will help.

Data Sheet one Data Sheet two
Column 1 Column 1 Column 2 Column 3 Column 4
Ralph Sam 199 496 408
Sam Ralph 210 333
535
John Mike 75 322
647
Mike Tim 498 354
657
Tim John 637 577
353

Looking to take the information from Data Sheet two, and auto populate that
data into the matching name on data sheet one. I know I can drag the
information from one to the other, but there are numerous entries for each.
Better?


"Mike H" wrote:

Hi,

Average last 25 entries

=AVERAGE(OFFSET(A1,COUNTA(A:A)-25,):OFFSET(A1,COUNTA(A:A),))

I don't understand the second question
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"Going Crazy with excel" wrote:

Guess I have a duel question.
First, I have numerous columns of data, all numerical. New entries are
entered at the end of the column. Is there a formula to average just the
last 25 entries in the column? (Bottom of column up)
Second question pertains to the ability to "auto populate". I have a column
of names. (three dozen). I would then like to auto populate the single
column of names, matching the names with the average data obtained from the
above. (average of last 25, 50, 100,etc entries) Data changes daily?
Any help would be greatly appreciated.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 193
Default Formula to average last 25 entries in a column?

=AVERAGE(OFFSET($B$1,MAX(COUNT($B:$B)-25,0),,25))

and

=INDEX(Sheet2!$A$1:$E$5,MATCH($A1,Sheet2!$A$1:$A$5 ,0),COLUMN())

HTH
Steve D.


"Going Crazy with excel"
wrote in message ...
Sorry Mike, I know what I want, just don't know how to say it.
Maybe an example will help.

Data Sheet one Data Sheet two
Column 1 Column 1 Column 2 Column 3 Column 4
Ralph Sam 199 496
408
Sam Ralph 210 333
535
John Mike 75 322
647
Mike Tim 498 354
657
Tim John 637 577
353

Looking to take the information from Data Sheet two, and auto populate
that
data into the matching name on data sheet one. I know I can drag the
information from one to the other, but there are numerous entries for
each.
Better?


"Mike H" wrote:

Hi,

Average last 25 entries

=AVERAGE(OFFSET(A1,COUNTA(A:A)-25,):OFFSET(A1,COUNTA(A:A),))

I don't understand the second question
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"Going Crazy with excel" wrote:

Guess I have a duel question.
First, I have numerous columns of data, all numerical. New entries are
entered at the end of the column. Is there a formula to average just
the
last 25 entries in the column? (Bottom of column up)
Second question pertains to the ability to "auto populate". I have a
column
of names. (three dozen). I would then like to auto populate the
single
column of names, matching the names with the average data obtained from
the
above. (average of last 25, 50, 100,etc entries) Data changes daily?
Any help would be greatly appreciated.


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 193
Default Formula to average last 25 entries in a column?

1st formula should perhaps have been better shown as:

=AVERAGE(OFFSET(B$1,MAX(COUNT(B:B)-25,0),,25))

So it can be copied along to other columns.


"Steve Dunn" wrote in message
...
=AVERAGE(OFFSET($B$1,MAX(COUNT($B:$B)-25,0),,25))

and

=INDEX(Sheet2!$A$1:$E$5,MATCH($A1,Sheet2!$A$1:$A$5 ,0),COLUMN())

HTH
Steve D.


"Going Crazy with excel"
wrote in message
...
Sorry Mike, I know what I want, just don't know how to say it.
Maybe an example will help.

Data Sheet one Data Sheet two
Column 1 Column 1 Column 2 Column 3 Column 4
Ralph Sam 199 496 408
Sam Ralph 210 333
535
John Mike 75 322
647
Mike Tim 498 354
657
Tim John 637 577
353

Looking to take the information from Data Sheet two, and auto populate
that
data into the matching name on data sheet one. I know I can drag the
information from one to the other, but there are numerous entries for
each.
Better?


"Mike H" wrote:

Hi,

Average last 25 entries

=AVERAGE(OFFSET(A1,COUNTA(A:A)-25,):OFFSET(A1,COUNTA(A:A),))

I don't understand the second question
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"Going Crazy with excel" wrote:

Guess I have a duel question.
First, I have numerous columns of data, all numerical. New entries
are
entered at the end of the column. Is there a formula to average just
the
last 25 entries in the column? (Bottom of column up)
Second question pertains to the ability to "auto populate". I have a
column
of names. (three dozen). I would then like to auto populate the
single
column of names, matching the names with the average data obtained
from the
above. (average of last 25, 50, 100,etc entries) Data changes daily?
Any help would be greatly appreciated.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to make a cell show average of the last 5 entries in a column? Hal Excel Worksheet Functions 1 September 8th 09 02:53 AM
Use formula to remove blank entries from a column Pete J Excel Worksheet Functions 8 June 18th 09 08:01 PM
Need a formula to average every other value in a column. Coach J Excel Discussion (Misc queries) 3 March 27th 08 01:01 AM
Formula to add top 4 entries in a column and total them at the bot New2excel Excel Worksheet Functions 2 January 7th 06 05:18 AM
Average of column entries abfabrob Excel Discussion (Misc queries) 3 April 12th 05 02:31 PM


All times are GMT +1. The time now is 02:05 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"