How can I increase a cell reference in VLOOKUP by 11 when copying?

J

John R.

Here is the formula: =VLOOKUP('Roll Up View'!A4,'Roll Up
View'!$A:$S,2,FALSE). I want to copy the formula down the column but
increase the cell reference in 'Roll Up View'!A4 by 11 so that the next
cell's formula would be =VLOOKUP('Roll Up View'!A15,'Roll Up
View'!$A:$S,2,FALSE). The following would be A26 and so on. This is a long
list.

Thank you, John.
 
S

Sean Timmons

Try something like this:

=VLOOKUP(INDIRECT("'Roll Up View'!A"&(ROW(A1)*11)-7),'Roll Up
View'!$A:$S,2,FALSE)

in your first and copy down.
 

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