nonsequential cell references

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am creating a formula on shet one that occurs on every other line but needs
to refer to cells on sheet 2 that are sequential. How can I reference those
cells?
 
I ran this formula in the odd rows of Sheet2, beginning with A1 and
referencing sequential cells on Sheet1, beginning with A1:
=OFFSET(Sheet1!$A$1,MAX(0,ROW(A1)/2),0)

So...
Sheet2!A1 refers to Sheet1!A1
Sheet2!A3 refers to Sheet1!A2
etc

Is that something you can work with?
 
Actually, this also works:
=OFFSET(Sheet2$A$1,ROW(A1)/2,0)
(Enter formula in Sheet1!A1 and copy to A3, A4, etc)
 
Enter this formula in A1 *and* A3 of Sheet1.

=INDEX(Sheet2!A:A,(ROW()+1)/2)

NOW, select A1 to A4.
Click on the fillhandle of the 4 cell *selection*. and drag down to copy as
needed.
 

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