Copy every nth line from one sheet to another - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T19:05:02Z http://stackoverflow.com/feeds/question/211062 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/211062/copy-every-nth-line-from-one-sheet-to-another 2 Copy every nth line from one sheet to another Adrian Wible 2008-10-17T04:18:15Z 2008-10-17T14:23:00Z <p>I have an Excel spreadsheet with 1 column, 700 rows. I care about every seventh line. I don't want to have to go in and delete the 6 rows between each row I care about. So my solution was to create another sheet and specify a reference to each cell I want.</p> <pre><code>=sheet1!a1 =sheet1!a8 =sheet1!a15 </code></pre> <p>But I don't want to type in each of these formulas ... `100 times.I thought if I selected the three and dragged the box around, it would understand what I was trying to do, but no luck.</p> <p>Any ideas on how to do this elegantly/efficiently?</p> http://stackoverflow.com/questions/211062/copy-every-nth-line-from-one-sheet-to-another/211090#211090 1 Answer by AquilaX for Copy every nth line from one sheet to another AquilaX 2008-10-17T04:35:31Z 2008-10-17T04:41:27Z <p>Add new column and fill it with ascending numbers. Then filter by ([column] mod 7 = 0) or something like that (don't have Excel in front of me to actually try this);</p> <p>If you can't filter by formula, add one more column and use the formula =MOD([column; 7]) in it then filter zeros and you'll get all seventh rows.</p> http://stackoverflow.com/questions/211062/copy-every-nth-line-from-one-sheet-to-another/211098#211098 1 Answer by JFV for Copy every nth line from one sheet to another JFV 2008-10-17T04:44:42Z 2008-10-17T04:44:42Z <p>Create a macro and use the following code to grab the data and put it in a new sheet (Sheet2):</p> <pre><code>Dim strValue As String Dim strCellNum As String Dim x As String x = 1 For i = 1 To 700 Step 7 strCellNum = "A" &amp; i strValue = Worksheets("Sheet1").Range(strCellNum).Value Debug.Print strValue Worksheets("Sheet2").Range("A" &amp; x).Value = strValue x = x + 1 Next </code></pre> <p>Let me know if this helps! JFV</p> http://stackoverflow.com/questions/211062/copy-every-nth-line-from-one-sheet-to-another/211729#211729 2 Answer by Mike Woodhouse for Copy every nth line from one sheet to another Mike Woodhouse 2008-10-17T11:01:11Z 2008-10-17T11:01:11Z <p>In A1 of your new sheet, put this:</p> <pre><code>=OFFSET(Sheet1!$A$1,(ROW()-1)*7,0) </code></pre> <p>... and copy down. If you start somewhere other than row 1, change ROW() to ROW(A1) or some other cell on row 1, then copy down again.</p> http://stackoverflow.com/questions/211062/copy-every-nth-line-from-one-sheet-to-another/212356#212356 2 Answer by Joe for Copy every nth line from one sheet to another Joe 2008-10-17T14:23:00Z 2008-10-17T14:23:00Z <p>If I were confronted with extracting every 7th row I would “insert” a column before Column “A” . I would then (assuming that there is a header row in row 1) type in the numbers 1,2,3,4,5,6,7 in rows 2,3,4,5,6,7,8, I would highlight the 1,2,3,4,5,6,7 and paste that block to the end of the sheet (700 rows worth). The result will be 1,23,4,5,6,7,1,2,3,4,5,6,7,1,2,3,4,5,6,7……. Now do a data sort ascending on column “A”. After the sort all of the 1’s will be the first in the series, all of the 7’s will be the seventh item.</p>