Series copy cells within edit

Rock5150

Board Regular
Joined
Nov 16, 2012
Messages
93
Office Version
  1. 365
Platform
  1. Windows
I have the attached here. As you can see I am doing a copy from another spreadsheet where it pulls every '3rd' row. How do I continue this without going into each cell and typing 12,15,18 for rows 3,4 and 5 etc

ALLEN, Dr. SEAN Net
ARCHULETA, MIKE Net
BANKS, ANTHONY Net
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Adjust the cell reference and change the 4 to however many rows you need.
Excel Formula:
=INDEX(A1:A100,SEQUENCE(4,1,1,3))
 
Last edited:
Upvote 0
Adjust the cell reference and change the 4 to however many rows you need.
Excel Formula:
=INDEX(A1:A100,SEQUENCE(4,1,1,3))
Hello. So the original names are in one sheet within the workbook. I want to pull the names from this sheet into a new one so that it only catches the name with "NET" at the end. Where do I put the index formula in?

Cell Formulas
RangeFormula
A5A5=W2
A6,A30,A27,A24,A21,A18,A15,A12,A9A6=A5&" "&"Net"
A8A8=W3
A11A11=W4
A14A14=W5
A17A17=W6
A20A20=W7
A23A23=W8
A26A26=W9
A29A29=W10




The second image is what I hope to look like. As you can see, right now I am manually typing the cell reference from the Scores spreadsheet one by one because I can't figure out the series fill sequence. Do I replace the reference with index and instead of A1:A100 I reference the other sheet?

HD Ham and Egg spreadsheet for HD Invitational May 2024 everyone has everyone.xlsx
A
1ALLEN, Dr. SEAN Net
2ARCHULETA, MIKE Net
3BANKS, ANTHONY Net
CALLEMOUT
Cell Formulas
RangeFormula
A1A1=Scores!A6
A2A2=Scores!A9
A3A3=Scores!A12
 
Upvote 0
If that's the case, try this.
Excel Formula:
=FILTER(Scores!A5:A30,ISNUMBER(SEARCH("Net",Scores!A5:A30)))
 
Upvote 0
Rock5150,
Please do not mark a post as the solution unless it actually contains the solution.
Thank you.
 
Upvote 0

Forum statistics

Threads
1,216,038
Messages
6,128,443
Members
449,453
Latest member
jayeshw

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