Summing 7 cells in the same row

vibez_well

New Member
Joined
Jan 23, 2013
Messages
9
Hi All,

Need some help here !

I have numerical values in cells A1:BI1. I need the sum of the first 7 cells(A1:G1) in A10. Then the next 7 cells (H1:N1) in A11 and so forth.



Please suggest a formula for it. Hope I will be able to drag the formula down from A10 and A11 to get similar sums for other rows. I tried tinkering with offset, but wasnt going ahead. :confused:

Thanks in advance.
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
In A10 and copy down
=SUM(OFFSET($A$1,0,(ROW()-9)*7,1,7))
 
Upvote 0
Hi pgc01 & taurean,

Thanks for your replies. Sorry there was a typo in my post.
What I'm looking for is a sum of cells A1:G1 in A10. sum of H1:N1 in cell B10. sum of O1:U1 in C10.
So basically, I need every 7 cells in row 1 to be summed up and returned in consecutive cells in row 10. Would that be possible ?

Thanks again ! :)
 
Upvote 0
Hi pgc01 & taurean,

Thanks for your replies. Sorry there was a typo in my post.
What I'm looking for is a sum of cells A1:G1 in A10. sum of H1:N1 in cell B10. sum of O1:U1 in C10.
So basically, I need every 7 cells in row 1 to be summed up and returned in consecutive cells in row 10. Would that be possible ?

Thanks again ! :)

A10, copied across:

=SUM(INDEX($A$1:$U$1,(COLUMNS($A$10:A1)-1)*7+1):INDEX($A$1:$U$1,(COLUMNS($A$10:A10))*7))
 
Upvote 0

Forum statistics

Threads
1,223,909
Messages
6,175,313
Members
452,634
Latest member
cpostell

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