SOLVED

Have my formulas copy while skipping 3 lines down at a time

Copper Contributor

I am trying to copy down data in an excel sheet that has stacked lines of data that need to be extracted to their own columns.

Russ1023_0-1675123267475.png

 

 

I am hoping to have Column D(or some other pastable location )be:

D1:  =B1

D2:  = B4

D3: = B7

D4: =B10

 

Then have E have the next lines data:

E1:  =C1

E2: =C4

E3: = C7

E4: = C10

 

I'll then do a similar thing in Columns F where:

F1: = B2

F2:  = B5

F3: = B8

F4 = B11

 

And G

G1: = C2

G2: = C5

G3 = C8

G4 = C11

 

Does anyone have any suggestions on how to make this work?

 

 

2 Replies

@Russ1023 Use INDEX() with SEQUENCE() function.

=INDEX(B1:B11,SEQUENCE(4,1,1,3))

 Harun24HR_0-1675132263556.png

 

best response confirmed by Russ1023 (Copper Contributor)
Solution

@Harun24HR Thank you very much.

 

Russ

1 best response

Accepted Solutions
best response confirmed by Russ1023 (Copper Contributor)