How to Increase cell ranges formula

Bazman170

New Member
Joined
Aug 1, 2018
Messages
3
First time poster. Hopefully, I'll make sense.

In cell d49 I have +sum(fixture!l2:m11)
In cell e49 I have +sum(fixture!112:m21)

How do I write a formula to increase this across each cell value by 10? ie: f49 = shows a range of l22:m31 etc, I need to go across to column ao49

Any help more than welcome, self taught on excel and old!!

Need to do this for about 15 rows, so could do with advise, many thanks
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Would it be possible to make a Helper Row?
Since you want to increase row address by 10 for each formula you could do this:

In a sheet where you want to put formulas, in a (lets say first row) you place values:

Excel 2016 (Windows) 32 bit
DEFGHIJKLMNOPQ
10102030405060708090100110120130

<tbody>
</tbody>
Sheet2
You need to autofill this row until AO column

Then you could write this formula:

Excel 2016 (Windows) 32 bit
DEFG
493900

<tbody>
</tbody>
Sheet2

Worksheet Formulas
CellFormula
D49=+SUM(INDIRECT("fixture!L"&2+D$1&":M"&11+D$1))
E49=+SUM(INDIRECT("fixture!L"&2+E$1&":M"&11+E$1))
F49=+SUM(INDIRECT("fixture!L"&2+F$1&":M"&11+F$1))
G49=+SUM(INDIRECT("fixture!L"&2+G$1&":M"&11+G$1))

<tbody>
</tbody>

<tbody>
</tbody>

and also autofill until AO column.
Note that row number is locked so if you copy cells from D49 to AO49 do next row formulas will adjust themselves.

P.s. Values in second table are random as I tested if formulas work. :)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,895
Members
449,097
Latest member
dbomb1414

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