Reference Every Fourth Cell

BrooksTech

Board Regular
Joined
May 9, 2011
Messages
59
Ive checked a lot of solutions via web-searches, including Mr Excel using INDIRECT and other crazy long-formulas, but havent found anything SIMPLE addressing this:

I need to skip FOUR rows on a separate worksheet and display the contents of that cell. E.G. The contents in Sheet2 of C7, C11, C15 etc. on down directly below one another on the destination sheet. Lets say that Excel allowed this:

=Sheet2!C(5+$4)

the next copied cell on the next row below would automatically look like:
=Sheet2!C(9+$4)

Ok, we know thats not a valid function or syntax. It would be nice if it was cus it would be way too simple! Anyways, you get the drift. Now what would the proper function and syntax be?
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Just use Offset and Row() functions together:

Per your sample, you want C7, C11, C15

Put this formula in row 1 of another sheet. Row 1 is key here:

=Offset(Sheet2!$C$7, (Row() *4)-4+7,0)

Yes, you can combine the -4 and +7, but it makes more sense to me to show the logic. Now just drag that formula down.
 
Upvote 0
Ive checked a lot of solutions via web-searches, including Mr Excel using INDIRECT and other crazy long-formulas, but havent found anything SIMPLE addressing this:

I need to skip FOUR rows on a separate worksheet and display the contents of that cell. E.G. The contents in Sheet2 of C7, C11, C15 etc. on down directly below one another on the destination sheet. Lets say that Excel allowed this:

=Sheet2!C(5+$4)

the next copied cell on the next row below would automatically look like:
=Sheet2!C(9+$4)

Ok, we know thats not a valid function or syntax. It would be nice if it was cus it would be way too simple! Anyways, you get the drift. Now what would the proper function and syntax be?

Destination sheet, A2...

=INDEX(Sheet2!C$5:C$100,4*ROWS(A$2:A2)-3)

Adjust to suit...
 
Upvote 0

Forum statistics

Threads
1,223,272
Messages
6,171,113
Members
452,381
Latest member
Nova88

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