Is there a way to place every 5th line in a cell?

G

Guest

Is there a formula that you can use to look in say column H, and return what
is in every 5th row?
 
G

Guest

In an unused column enter:

=INDIRECT("H"&ROW()*5)
and copy down

you will get H5, H10, H15,....
 
R

RagDyeR

To display row 1, 6, 11, ... etc.,
Try this *anywhere* on the Sheet:
=INDEX(H:H,5*ROWS($1:1)-4)

To display Row 5, 10, 15, ...etc.
Try this *anywhere* on the Sheet:
=INDEX(H:H,5*ROWS($1:1))

And copy down as needed.
--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================


Is there a formula that you can use to look in say column H, and return what
is in every 5th row?
 

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