Formula Help

elew69811

Board Regular
Joined
May 4, 2007
Messages
60
I have a formula in a column in cell B2 that looks at cell D2 in another workbook and in cell B3 I want it to look down 8 rows to D10 then in B4 I want it to look down another 8 rows to D18 etc. Is there a way to do this? I tried using the fill option and a few other things with no luck.

Thanks
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
You could use one of the following aproaches:

B2=INDEX(WorkbookReference$D$2:$D$1000,1+8*(ROW()-ROW($B$2))

B2=OFFSET(WorkbookReference$D2,7*(ROW()-ROW($B$2))

Copy down this formula and it should work. You can change the $D$1000 reference to fit your data.


ABCD
2111
3992
417173
525254
633335
741416

<colgroup><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>

Worksheet Formulas
CellFormula
A2=OFFSET($D2,7*(ROW()-ROW($A$2)),0)
B2=INDEX($D$2:$D$1000,1+8*(ROW()-ROW($B$2)))

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

[/IMG]
 
Upvote 0
Thanks, I didn't realize my excel skills were this poor that I can't even apply your suggestions but I am looking forward to the teachings that trial and error will bring.
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,862
Members
449,052
Latest member
Fuddy_Duddy

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