Formula Question

yankeefan70

New Member
Joined
Jan 27, 2014
Messages
2
Trying to sum a large worksheet but only every 7 rows and want the formula to repeat. Example

A1 to A100 has an # in the cell

Formula I want to repeat in each row in column B
B1 = Sum A1:A7
B2 = Sum A8:A14
etc...

copy and paste only goes to next row B2 now equals A2:A8, etc...
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Welcome to MrExcel!

In B1, try:

Code:
=SUM(INDEX(A$1:A$100,(ROWS(B$1:B1)-1)*7+1):INDEX(A$1:A$100,(ROWS(B$1:B1))*7))

And copy down...

Matty
 
Upvote 0

Forum statistics

Threads
1,214,639
Messages
6,120,679
Members
448,977
Latest member
dbonilla0331

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top