Can excel to pull out every tenth row into a separate sheet? How?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a huge series of Surveying shots (P,N,E,Z,D) and I would liket o pull
every tenth shot out and into a separate sheet. Any advice?
 
Assuming shots are in Sheet1 Column A

=INDIRECT("SHeet1!A"&ROW()*10)

Entered in A1 of a new sheet.

Copy down as far as you wish.


Gord Dibben MS Excel MVP
 
I think I"d do this with a helper column, but I'm not sure what you mean by
Surveying Shots and how you identify every 10th shot. Do you keep track of
the codes P, N, E, z and D?

Let's assume your Surveying Shots are in column A and start in A3. Try
something like this

=MOD(COUNTIF(A$3:A3,A3),10)

Copy the value down to the end of the list of Surveying shots. Then use
autofilter to select the value of the helper column you want to use.

HTH,
Barb Reinhardt
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top