Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have data in cells 1 €“ 297 in a worksheet that I want totaled in new
workbook like so€¦ Row 1 @sum(A1:A5) Row 2 @sum(A6:A10) Row 3 @sum(A11:A15) Etc. When I enter the formula in the first cell of the new workbook and copy the data down, it fills in increments of 1 instead of increments of 5 Row 1 @sum(A1:A5) Row 2 @sum(A2:A6) Row 3 @sum(A3:A7) |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In row 1 use this formula; and copy that down
=SUM(INDIRECT("A"&(ROW()-1)*5+1&":A"&ROW()*5)) If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: I have data in cells 1 €“ 297 in a worksheet that I want totaled in new workbook like so€¦ Row 1 @sum(A1:A5) Row 2 @sum(A6:A10) Row 3 @sum(A11:A15) Etc. When I enter the formula in the first cell of the new workbook and copy the data down, it fills in increments of 1 instead of increments of 5 Row 1 @sum(A1:A5) Row 2 @sum(A2:A6) Row 3 @sum(A3:A7) |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Jacob,
My results were 0 with the formula as stated. Dawn "Jacob Skaria" wrote: In row 1 use this formula; and copy that down =SUM(INDIRECT("A"&(ROW()-1)*5+1&":A"&ROW()*5)) If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: I have data in cells 1 €“ 297 in a worksheet that I want totaled in new workbook like so€¦ Row 1 @sum(A1:A5) Row 2 @sum(A6:A10) Row 3 @sum(A11:A15) Etc. When I enter the formula in the first cell of the new workbook and copy the data down, it fills in increments of 1 instead of increments of 5 Row 1 @sum(A1:A5) Row 2 @sum(A2:A6) Row 3 @sum(A3:A7) |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
From A1 to A5 fill 1
From A5 to A10 fill 2 From A11 to A15 fill 3 The below formula in B1 should give you a total of 5 =SUM(INDIRECT("A"&(ROW()-1)*5+1&":A"&ROW()*5)) In B2 10 In B2 15 If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: Jacob, My results were 0 with the formula as stated. Dawn "Jacob Skaria" wrote: In row 1 use this formula; and copy that down =SUM(INDIRECT("A"&(ROW()-1)*5+1&":A"&ROW()*5)) If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: I have data in cells 1 €“ 297 in a worksheet that I want totaled in new workbook like so€¦ Row 1 @sum(A1:A5) Row 2 @sum(A6:A10) Row 3 @sum(A11:A15) Etc. When I enter the formula in the first cell of the new workbook and copy the data down, it fills in increments of 1 instead of increments of 5 Row 1 @sum(A1:A5) Row 2 @sum(A2:A6) Row 3 @sum(A3:A7) |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Your formula worked for your example as you stated. However, it is not the
result I am looking for. When I can state my needs more clearly, I will repost. Thanks, Dawn "Jacob Skaria" wrote: From A1 to A5 fill 1 From A5 to A10 fill 2 From A11 to A15 fill 3 The below formula in B1 should give you a total of 5 =SUM(INDIRECT("A"&(ROW()-1)*5+1&":A"&ROW()*5)) In B2 10 In B2 15 If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: Jacob, My results were 0 with the formula as stated. Dawn "Jacob Skaria" wrote: In row 1 use this formula; and copy that down =SUM(INDIRECT("A"&(ROW()-1)*5+1&":A"&ROW()*5)) If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: I have data in cells 1 €“ 297 in a worksheet that I want totaled in new workbook like so€¦ Row 1 @sum(A1:A5) Row 2 @sum(A6:A10) Row 3 @sum(A11:A15) Etc. When I enter the formula in the first cell of the new workbook and copy the data down, it fills in increments of 1 instead of increments of 5 Row 1 @sum(A1:A5) Row 2 @sum(A2:A6) Row 3 @sum(A3:A7) |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Jacob,
OK It is after lunch now and I have a clearer head. The formula IS what I want, I just need the part it references the other workbook. Thanks for your help and sorry for my confusion. Dawn "Jacob Skaria" wrote: From A1 to A5 fill 1 From A5 to A10 fill 2 From A11 to A15 fill 3 The below formula in B1 should give you a total of 5 =SUM(INDIRECT("A"&(ROW()-1)*5+1&":A"&ROW()*5)) In B2 10 In B2 15 If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: Jacob, My results were 0 with the formula as stated. Dawn "Jacob Skaria" wrote: In row 1 use this formula; and copy that down =SUM(INDIRECT("A"&(ROW()-1)*5+1&":A"&ROW()*5)) If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: I have data in cells 1 €“ 297 in a worksheet that I want totaled in new workbook like so€¦ Row 1 @sum(A1:A5) Row 2 @sum(A6:A10) Row 3 @sum(A11:A15) Etc. When I enter the formula in the first cell of the new workbook and copy the data down, it fills in increments of 1 instead of increments of 5 Row 1 @sum(A1:A5) Row 2 @sum(A2:A6) Row 3 @sum(A3:A7) |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Great. That lunch would have certainly made a difference..
If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: Jacob, OK It is after lunch now and I have a clearer head. The formula IS what I want, I just need the part it references the other workbook. Thanks for your help and sorry for my confusion. Dawn "Jacob Skaria" wrote: From A1 to A5 fill 1 From A5 to A10 fill 2 From A11 to A15 fill 3 The below formula in B1 should give you a total of 5 =SUM(INDIRECT("A"&(ROW()-1)*5+1&":A"&ROW()*5)) In B2 10 In B2 15 If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: Jacob, My results were 0 with the formula as stated. Dawn "Jacob Skaria" wrote: In row 1 use this formula; and copy that down =SUM(INDIRECT("A"&(ROW()-1)*5+1&":A"&ROW()*5)) If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: I have data in cells 1 €“ 297 in a worksheet that I want totaled in new workbook like so€¦ Row 1 @sum(A1:A5) Row 2 @sum(A6:A10) Row 3 @sum(A11:A15) Etc. When I enter the formula in the first cell of the new workbook and copy the data down, it fills in increments of 1 instead of increments of 5 Row 1 @sum(A1:A5) Row 2 @sum(A2:A6) Row 3 @sum(A3:A7) |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Jacob,
Where would your formula be placed in the information below? ='[2008 MM, Debit, Interest.xls]2009'!AU31 Thanks, Dawn "Jacob Skaria" wrote: Great. That lunch would have certainly made a difference.. If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: Jacob, OK It is after lunch now and I have a clearer head. The formula IS what I want, I just need the part it references the other workbook. Thanks for your help and sorry for my confusion. Dawn "Jacob Skaria" wrote: From A1 to A5 fill 1 From A5 to A10 fill 2 From A11 to A15 fill 3 The below formula in B1 should give you a total of 5 =SUM(INDIRECT("A"&(ROW()-1)*5+1&":A"&ROW()*5)) In B2 10 In B2 15 If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: Jacob, My results were 0 with the formula as stated. Dawn "Jacob Skaria" wrote: In row 1 use this formula; and copy that down =SUM(INDIRECT("A"&(ROW()-1)*5+1&":A"&ROW()*5)) If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: I have data in cells 1 €“ 297 in a worksheet that I want totaled in new workbook like so€¦ Row 1 @sum(A1:A5) Row 2 @sum(A6:A10) Row 3 @sum(A11:A15) Etc. When I enter the formula in the first cell of the new workbook and copy the data down, it fills in increments of 1 instead of increments of 5 Row 1 @sum(A1:A5) Row 2 @sum(A2:A6) Row 3 @sum(A3:A7) |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try the below (all in one line)
=SUM(INDIRECT("'[2008 MM, Debit, Interest.xls]2009'!A"&(ROW()-1)*5+1&":A"&ROW()*5)) If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: Jacob, Where would your formula be placed in the information below? ='[2008 MM, Debit, Interest.xls]2009'!AU31 Thanks, Dawn "Jacob Skaria" wrote: Great. That lunch would have certainly made a difference.. If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: Jacob, OK It is after lunch now and I have a clearer head. The formula IS what I want, I just need the part it references the other workbook. Thanks for your help and sorry for my confusion. Dawn "Jacob Skaria" wrote: From A1 to A5 fill 1 From A5 to A10 fill 2 From A11 to A15 fill 3 The below formula in B1 should give you a total of 5 =SUM(INDIRECT("A"&(ROW()-1)*5+1&":A"&ROW()*5)) In B2 10 In B2 15 If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: Jacob, My results were 0 with the formula as stated. Dawn "Jacob Skaria" wrote: In row 1 use this formula; and copy that down =SUM(INDIRECT("A"&(ROW()-1)*5+1&":A"&ROW()*5)) If this post helps click Yes --------------- Jacob Skaria "tcidawn" wrote: I have data in cells 1 €“ 297 in a worksheet that I want totaled in new workbook like so€¦ Row 1 @sum(A1:A5) Row 2 @sum(A6:A10) Row 3 @sum(A11:A15) Etc. When I enter the formula in the first cell of the new workbook and copy the data down, it fills in increments of 1 instead of increments of 5 Row 1 @sum(A1:A5) Row 2 @sum(A2:A6) Row 3 @sum(A3:A7) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to create a fill down that increments based on the workbook name | Excel Worksheet Functions | |||
How to create a fill down that increments based on the workbook name | Excel Worksheet Functions | |||
How can I create a fill that increments based on worksheet numbers | Excel Worksheet Functions | |||
Edit Fill Series - How do I fill using minute increments | Excel Discussion (Misc queries) | |||
How to create a fill down that increments based on the worksheet n | Excel Worksheet Functions |