Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi All
I have a column of 1020 rows with numbers , I need to average the sum of every 5 rows down to 1020 rows eg- a d 1 52 2 60 3 64 4 40 5 71 57.6 6 203 7 150 8 11 9 25 10 93 96.4 Can any one help me please Thanks in advance -- bill gras |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way...
Assume data starts in cell A2. Enter this formula in B2 and copy down: =IF(MOD(ROWS(B$2:B2),5),"",AVERAGE(OFFSET(A2,,,-5))) -- Biff Microsoft Excel MVP "bill gras" wrote in message ... Hi All I have a column of 1020 rows with numbers , I need to average the sum of every 5 rows down to 1020 rows eg- a d 1 52 2 60 3 64 4 40 5 71 57.6 6 203 7 150 8 11 9 25 10 93 96.4 Can any one help me please Thanks in advance -- bill gras |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In D5 enter the below formula and copy down as required
=IF(MOD(ROW(),5),"",AVERAGE(A1:A5)) If this post helps click Yes --------------- Jacob Skaria "bill gras" wrote: Hi All I have a column of 1020 rows with numbers , I need to average the sum of every 5 rows down to 1020 rows eg- a d 1 52 2 60 3 64 4 40 5 71 57.6 6 203 7 150 8 11 9 25 10 93 96.4 Can any one help me please Thanks in advance -- bill gras |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In D1: =IF(MOD(ROW(),5)=0,AVERAGE(OFFSET(A1,,,-5,)),"")
copy down as far as needed "bill gras" wrote: Hi All I have a column of 1020 rows with numbers , I need to average the sum of every 5 rows down to 1020 rows eg- a d 1 52 2 60 3 64 4 40 5 71 57.6 6 203 7 150 8 11 9 25 10 93 96.4 Can any one help me please Thanks in advance -- bill gras |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
A formula to AVERAGE IF but only average a set number of values | Excel Worksheet Functions | |||
Find monthly average but have average automatically configured | Excel Discussion (Misc queries) | |||
Error Handling #N/A with AVERAGE Function - Average of values in Row | Excel Worksheet Functions | |||
Weighed Average of a weiged average when there are blanks | Excel Discussion (Misc queries) | |||
how does one convert text to a formula "average(A:A)" to =average( | Excel Worksheet Functions |