Thread: Average array
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default Average array

=SUM(IF(MOD(ROW($A$1:$A$24001)-1,1000)=0,$A$1:$A$24001,0))/25
as an array formula
--
Gary''s Student
gsnu200710


"hmm" wrote:

I have a column of data comprising a series of 25 arrays. I would like to
generate an array whose elements are the average of the corresponding
positions in each of the 25 arrays.

Suppose, for example, the first array is in cells A1 to A1000, the 2nd in
A1001 to A2000, etc. What formula would give me the average of A1, A1001,
A2001, ..., A24001?