Fill a formula but skipping cells

UncleBajubjubs

Board Regular
Joined
Jul 11, 2017
Messages
111
Office Version
  1. 2010
Hello,
I have a sheet which contains several thousand entries where I need to put each sixth entry into a new column.

The first four lines in the new column would be:
Cell 1 =B4
Cell 2 =B10
Cell 3 =B16
Cell 4 =B22


Is there an easy way copy this pattern of formulas down the whole sheet? My new column will have about 2600 entries, so doing this manually would be too much.

Thanks
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
One solution could be:
Excel Formula:
=INDIRECT("B"&(ROW(A1)*6)-2)
But be careful, INDIRECT is a volatile function. Which means, it will recalculate each time you open the file. It may take longer with 2600 rows.
 
Upvote 0
One solution could be:
Excel Formula:
=INDIRECT("B"&(ROW(A1)*6)-2)
But be careful, INDIRECT is a volatile function. Which means, it will recalculate each time you open the file. It may take longer with 2600 rows.
I actually found a solution right after I posted this, I used

=OFFSET($B$4,(ROW(B1)-1)*6,0)

and that has seemingly worked perfectly.
 
Upvote 0
Another option that is not volatile is
Excel Formula:
=INDEX(B:B,ROWS(C$2:C2)*6-2)
 
Upvote 0

Forum statistics

Threads
1,215,241
Messages
6,123,823
Members
449,127
Latest member
Cyko

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