Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
I am struggling to figure out how to take average of every twelfth cell in a column containing a very list of numbers. Can anyone help me? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One thing you can do is write out an AVERAGE function and inside the
paranthesis you would have to select your desired cells by holding down the Ctrl button... now, depending on the other data on that wrksht, you may be able to write an IF function that will average out the correct functions... but this would be impossible for me to know how you would construct this without seeing the data... "uiowa" wrote: Hi, I am struggling to figure out how to take average of every twelfth cell in a column containing a very list of numbers. Can anyone help me? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How about telling us what the first few cell addresses are so we can see the
pattern. -- Biff Microsoft Excel MVP "uiowa" wrote in message ... Hi, I am struggling to figure out how to take average of every twelfth cell in a column containing a very list of numbers. Can anyone help me? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If F4 contains the value "12" then you can use this Array formula:
=(SUM((IF(MOD(ROW(A1:A40),$F$4)=0,1,0)*(A1:A40))))/(SUM((IF(MOD(ROW(A1:A40),$F$4)=0,1,0)*1))) Array formulas are entered by typing the formula and instead of hitting "Enter" key - hit "CTRL + SHIFT + ENTER" simultaneously. You can learn about array formulas he http://www.cpearson.com/excel/ArrayFormulas.aspx "uiowa" wrote: Hi, I am struggling to figure out how to take average of every twelfth cell in a column containing a very list of numbers. Can anyone help me? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=(SUM((IF(MOD(ROW(A1:A40),$F$4)=0,1,0)*(A1:A40))) )/(SUM((IF(MOD(ROW(A1:A40),$F$4)=0,1,0)*1)))
You can reduce that to: Array entered. =AVERAGE(IF(MOD(ROW(A1:A40),F4)=0,A1:A40)) -- Biff Microsoft Excel MVP "dhstein" wrote in message ... If F4 contains the value "12" then you can use this Array formula: =(SUM((IF(MOD(ROW(A1:A40),$F$4)=0,1,0)*(A1:A40))))/(SUM((IF(MOD(ROW(A1:A40),$F$4)=0,1,0)*1))) Array formulas are entered by typing the formula and instead of hitting "Enter" key - hit "CTRL + SHIFT + ENTER" simultaneously. You can learn about array formulas he http://www.cpearson.com/excel/ArrayFormulas.aspx "uiowa" wrote: Hi, I am struggling to figure out how to take average of every twelfth cell in a column containing a very list of numbers. Can anyone help me? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
compare cells in column to criteria, then average next column cell | Excel Worksheet Functions | |||
calculate average in a column based on criteria in another column | Excel Discussion (Misc queries) | |||
average every 6th cell in a column | Excel Worksheet Functions | |||
Sum/average numbers in column A dependant on value in column B | Excel Worksheet Functions | |||
I need to find the Average from Column A - but Reference Column B | Excel Worksheet Functions |