Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am constantly adding data to my array and want formulas that can expand
with the data. Data is added by weeks. The first number is at A1 how can I put in a formula that it needs to sum A1, A12,A24,depending on the week? Such as A(1*n) where n is the week number. Thanks....Paul |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Perhaps something like this might work for you, or at least point you in the
right direction: =A1+SUMPRODUCT((MOD(ROW(A1:A1000),12)=0)*(A1:A1000 )) This will sum A1 and all cells in column A whose row number is evenly divisible by 12. HTH, Elkar "Paul" wrote: I am constantly adding data to my array and want formulas that can expand with the data. Data is added by weeks. The first number is at A1 how can I put in a formula that it needs to sum A1, A12,A24,depending on the week? Such as A(1*n) where n is the week number. Thanks....Paul |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Variable column to fixed array | Excel Worksheet Functions | |||
Make array formulay to round a number then subtract 10 from it | New Users to Excel | |||
How to make array of noncontig cells for SUMPRODUCT? | Excel Discussion (Misc queries) | |||
use a variable array in a formula | Excel Discussion (Misc queries) | |||
Array | Excel Worksheet Functions |