Look for value that is six columns apart

P

Pablo

I have a spreadsheet that has a diffent column title every six columns. The
data for the spreadsheet is coming from a query. How can I reference the
columns that are at a constant of six columns apart? For example:

Column
A B C D E F
Part 1 XX XX XX XX Part 2

I need for the formula to reference Part 2, and subsequently Part 3 located
in column L, row 1.

Thanks, Pablo
 
R

RagDyer

With Part 2 in Column F,
Part 3 in Column L,
Part 4 in Column R,
.... etc.

If copying *down*, use:
=INDEX($1:$1,6*ROWS($1:1))

If copying *across*, use:
=INDEX($1:$1,6*COLUMNS($A:A))
 

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