Skipping to the next cell in a worksheet

  • Thread starter Thread starter Lo
  • Start date Start date
L

Lo

If I have data beginning with cell A1 and want to 'count'
every 14 rows and pick up the data in the next cell (e.g.
A15) in my next line item, how do I put in a formula that
does this (I'm not savvy with VBE, so is there a way to
key this in - short of keying in the cell locations, e.g.
A1, A15, A29, etc.)?
 
Put this in B1 and fill down:

=OFFSET($A$1,ROW()*14-14,)

HTH
Jason
Atlanta, GA
 
One way:

B1: =INDEX(A:A,(ROW()-1)*14+1)

Copy down as far as desired.
 

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