Need to Reference a sequence of data on one sheet in another sheet but with 3 rows in between each value

bwest

New Member
Joined
Jul 22, 2011
Messages
3
I have a list of values from A1 to A30 on sheet1 and I need it to be displayed on sheet2 but with 3 rows in between each one. For example:

A1, A2, A3 on sheet1 would be

A1, A5, A9 on sheet 2.
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Try

Code:
Sub Xfer()
Dim i As Long
For i = 1 To 30
    Sheets("Sheet2").Range("A" & 4 * i - 3).Formula = "=Sheet1!A" & i
Next i
End Sub
 
Upvote 0
Hi

Welcome to the forum.

As a formula try in Sheet 2, cell A1 -
Code:
=INDEX(Sheet1!$A$1:$A$30,(ROWS($A$1:$A1)-1)*4+1)

and copied down as far as required

hth
 
Upvote 0

Forum statistics

Threads
1,224,613
Messages
6,179,903
Members
452,948
Latest member
Dupuhini

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