Drag formula to sum multiple row data horizontally

rrmando

Board Regular
Joined
Dec 23, 2004
Messages
212
Hello party people. I need help figuring out how to drag the formula below horizontally across columns so they reference the vertical data below. I tried using the transpose function but no luck. Will this require the index function? I can't get it to work. Thank you for your help.

cell A1 would be ='Job Data'!M47+'Job Data'!M101+'Job Data'!M185
cell B1 would be ='Job Data'!M48+'Job Data'!M102+'Job Data'!M186
cell C1 would be ='Job Data'!M49+'Job Data'!M103+'Job Data'!M187
etc., etc.
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Try this

=INDIRECT("'Job Data'!M"&COLUMN(AU1))+INDIRECT("'Job Data'!M"&COLUMN(CW1))+INDIRECT("'Job Data'!M"&COLUMN(GC1))
 
Last edited:
Upvote 0
You can also use the OFFSET function, i.e. place this is cell A1 and copy to the other columns in that row:
Code:
=OFFSET('Job Data'!$M$47,COLUMN()-1,0)+OFFSET('Job Data'!$M$185,COLUMN()-1,0)
 
Last edited:
Upvote 0
You are welcome. Glad we could help.
 
Upvote 0

Forum statistics

Threads
1,214,590
Messages
6,120,421
Members
448,961
Latest member
nzskater

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