Referencing every other line

M

Mark

I have Tab 1 that will reference cells in Tab 2. Tab 1's referencing will be
sequential.....row 1, 2, 3, etc....but I want them to reference rows 1, 3, 5,
etc. on Tab 2. Can I copy and paste in Tab 1 where it brings over every
other line on Tab2?
 
T

T. Valko

Try this:

Assuming you want to reference column A on Sheet2.

Entered on Sheet1 in cell A1:

=INDEX(Sheet2!A:A,ROWS(A$1:A1)*2-2+1)
 
Top