Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a column of 14595 observations.
I need to divide the 14595 observations into 695 groups (each with 21 obs), and to create a column of 695 observation of the minimum value from each of the 695 groups. Using min( ) (I assume), how can I reference the associated column so I do not have to manually type the associated rows for each group? Thanks. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() With data starting in A1, use this formula in B1 and fill down... = IF(MOD(ROW(),21)= 0,MIN(OFFSET(A1,-20,0,21,1)),"") -- Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware (Excel Add-ins / Excel Programming) "Ryan" wrote in message I have a column of 14595 observations. I need to divide the 14595 observations into 695 groups (each with 21 obs), and to create a column of 695 observation of the minimum value from each of the 695 groups. Using min( ) (I assume), how can I reference the associated column so I do not have to manually type the associated rows for each group? Thanks. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you want the results in the columns 1 to 695, try the folowing in,say,
B1, then copy to B2to B695. =MIN(OFFSET($A$1;(ROW()-1)*21;0;21;1)) regards Lazzzx "Jim Cone" skrev i meddelelsen ... With data starting in A1, use this formula in B1 and fill down... = IF(MOD(ROW(),21)= 0,MIN(OFFSET(A1,-20,0,21,1)),"") -- Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware (Excel Add-ins / Excel Programming) "Ryan" wrote in message I have a column of 14595 observations. I need to divide the 14595 observations into 695 groups (each with 21 obs), and to create a column of 695 observation of the minimum value from each of the 695 groups. Using min( ) (I assume), how can I reference the associated column so I do not have to manually type the associated rows for each group? Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Nesting a sheet name reference within a cell reference??? | Excel Discussion (Misc queries) | |||
Changing sheet reference to cell reference | Excel Worksheet Functions | |||
Using an offset formula for the reference in a relative reference | Excel Worksheet Functions | |||
Formulas that reference cells that reference another cell | Excel Discussion (Misc queries) | |||
Row reference increment but preserve column reference | Excel Worksheet Functions |