Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default Copy/Fill increments

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Copy/Fill increments

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default Copy/Fill increments

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Copy/Fill increments

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default Copy/Fill increments

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default Copy/Fill increments

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Copy/Fill increments

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default Copy/Fill increments

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Copy/Fill increments

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to create a fill down that increments based on the workbook name MikeExcel Excel Worksheet Functions 0 July 12th 06 04:03 AM
How to create a fill down that increments based on the workbook name [email protected] Excel Worksheet Functions 4 July 6th 06 01:36 PM
How can I create a fill that increments based on worksheet numbers Amanda097 Excel Worksheet Functions 3 February 7th 06 08:39 PM
Edit Fill Series - How do I fill using minute increments IUnknown Excel Discussion (Misc queries) 1 January 29th 06 12:50 PM
How to create a fill down that increments based on the worksheet n Skot Excel Worksheet Functions 7 August 2nd 05 04:47 PM


All times are GMT +1. The time now is 02:41 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"