OFFSET Function

Phosphonothioic

Board Regular
Joined
Sep 27, 2009
Messages
194
Hopefully I can explain this clearly...

In Sheet1, I have values in columns A1,B1,C1,D1 etc...

In Sheet2, I want to call on those values, but here's my problem:

I need Sheet2(A1) to call Sheet1(A1)...easy enough.

But then I need Sheet2(E1) to call Sheet1(B1)...

And Sheet2(I1) to call Sheet1(C1)...

and so on down the line. Sheet2 increments by 4 cells each time.

So I'm thinking I need to use OFFSET here in some capacity, but I can't get the column criteria to do what I need it to do.

I need something that I can drag across the sheet so I don't have to do every 4th column manually in Sheet2.

Hope I got that across clearly enough. Thanks in advance for your help!
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Then you won't be able to drag the formula across, but you can copy it over each cell, and it'll bring the correct results:

Code:
=INDEX(Sheet1!$1:$1,INT((COLUMN(A1)-1)/4)+1)
 
Upvote 0
Maybe

=INDIRECT("Sheet1!RC"&(COLUMN()/4)+1,0)

Copy and paste as needed.
 
Upvote 0

Forum statistics

Threads
1,224,520
Messages
6,179,267
Members
452,902
Latest member
Knuddeluff

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