find and copy data from column

A

akdeuce

I have a long list of data imported into one column. Each record is 13
rows. I would like to be able to type the first line of any record
into cell B1 and have it find and report the record plus 12 rows
beneath the record into C1:C13. Any suggestions?
 
J

JE McGimpsey

akdeuce said:
I have a long list of data imported into one column. Each record is 13
rows. I would like to be able to type the first line of any record
into cell B1 and have it find and report the record plus 12 rows
beneath the record into C1:C13. Any suggestions?

One way:

C1: =B1
C2: =INDEX(A:A, MATCH($B$1, A:A, FALSE) + ROW() - 1)

Copy C2 down to C13.
 

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

Top