Dragging Formula from alternate cells

wendy21

New Member
Joined
Mar 2, 2015
Messages
14
Office Version
  1. 365
Platform
  1. MacOS
In sheet 1 Cell d11 I want to add from sheet 2 the sum of cells d18 and e18, I then want to drag this formula so that in Sheet 1 Cell e11 it shows the sum of Sheet 2 cells f18 and g18. Is there a way of doing this?
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Excel Formula:
=OFFSET(Sheet2!$D$18,0,ROW(1:1)-1)+OFFSET(Sheet2!$E$18,0,ROW(1:1)-1)
 
Upvote 0
What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)
 
Upvote 0
I just realised that you want to move 2 columns forward i.e. from D:E to F:G
In said case try this

Excel Formula:
=OFFSET(Sheet2!$D$18,0,ROW(1:1)*2-2)+OFFSET(Sheet2!$E$18,0,ROW(1:1)*2-2)
 
Upvote 0
Thanks but when I drag the formula it tries to add e:f not f:g
=OFFSET('Funding Capacity'!E$18,0,ROW(1:1)*2-2)+OFFSET('Funding Capacity'!F$18,0,ROW(1:1)*2-2)
I've tried with and without the $ in front of D & E
 
Upvote 0
Another option, for 365
Excel Formula:
=SUM(INDEX(Sheet2!$D$18:$W$18,SEQUENCE(,2,COLUMNS($D11:D11)*2-1)))
 
Upvote 0
Solution
=OFFSET('Funding Capacity'!E$18,0,ROW(1:1)*2-2)+OFFSET('Funding Capacity'!F$18,0,ROW(1:1)*2-2)
this must be set to Column D + E as this is the formula in the first instance

Use this -this will add D18+E18 > when drag down it will plus F18+G18
Excel Formula:
=OFFSET('Funding Capacity'!$D$18,0,ROW(1:1)*2-2)+OFFSET('Funding Capacity'!$E$18,0,ROW(1:1)*2-2)
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,324
Messages
6,124,249
Members
449,149
Latest member
mwdbActuary

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