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

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
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,923
Messages
6,122,289
Members
449,077
Latest member
Rkmenon

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