Offset? Vlookup? Cell referencing

dmurphy1991

New Member
Joined
Jan 10, 2014
Messages
22
So my problem is, i have a row of data, but due to cell merging and it's layout the cells i want are spaced 3 columns apart.

I would like to be able to use the above cell's formula, but then add 3 onto the column number for the next cell.

i.e. A1 formula = 'Worksheet1'!D2
I'd want A2 formula = D2 (but with the column reference +3)
- 'Worksheet1'!(D+3)2
This would give me G2 as a cell reference for A2, however i have a very large list and would like to not have to manually change the reference for all individually

and i'd like this to be formatted so i could drag it down the list and the process would repeat.

Is there a way of doing this?
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
I think you'll need to use either OFFSET or INDIRECT. Be careful as these are both volatile functions and can slow down recalculation in a large spreadsheet.
You've got an example with OFFSET so for INDIRECT you could use:

=INDIRECT(ADDRESS(2,3*(ROW())+1,1,1,"Worksheet1"))

When you drag this down it will move 3 columns to the right at each row.
 
Upvote 0

Forum statistics

Threads
1,215,269
Messages
6,123,976
Members
449,138
Latest member
abdahsankhan

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