View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
David Hilberg David Hilberg is offline
external usenet poster
 
Posts: 84
Default How do i select every 7th row in an Excel spreadsheet?

To select every 7th row, you might use one column to label the rows 0
through 6:

=MOD(ROW(),7)

Then Autofilter to hide all but those rows numbered 6, and select as usual.

Hope this helps,
David