Incremental References

L

Liam

I was wondering if anyone could help:

I would like to make a list referencing cells equidistantly apart:

In sheet 2 i am interested in a value every 40 rows apart and in the other
sheet 1 I would like to make a list of those values every row:

In sheet 1:

A1 =Sheet2!A1
A2 =Sheet2!A41
A3 =Sheet3!A81

and so on...can anyone help?
 
T

Tom Hutchins

Try

=INDIRECT("Sheet2!A"&1+(ROW()-1)*40)

in A1 on Sheet1 and copy down as needed.

Hope this helps,

Hutch
 
P

Per Erik Midtrød

I was wondering if anyone could help:

I would like to make a list referencing cells equidistantly apart:

In sheet 2 i am interested in a value every 40 rows apart and in the other
sheet 1 I would like to make a list of those values every row:

In sheet 1:

A1 =Sheet2!A1
A2 =Sheet2!A41
A3 =Sheet3!A81

and so on...can anyone help?

This formula in A1 should do it:
=INDIRECT("sheet2!a" &(ROW()*40)-39)

Per Erik
 

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