fill reference to cells in a row down a column

G

Giz

On one worksheet, I am trying to reference cell A2 in table1 in cell A20 on
table 2 . I want to fill the table 2 down to cell A29, however I am
referencing data that is in just one row table 1, i.e. the data is in cells
A1, B1, C1, D1, etc on to J1. I don't want to just copy and paste/transpose
the data from table 1 to table 2 because I want to maintain the references. I
could just take table 1 and transpose it, than create the references, but
prefer not to. Any ideas? Thanks
 
L

Luke M

=OFFSET('Table1'!$A$1,0,ROW(A1)-1)

Copying this down will move the reference horizontally.
 
T

T. Valko

If I understand what you want...

In cell A20:

=INDEX(A$1:J$1,ROWS(A$20:A20))

Copy down as needed.
 
G

Gord Dibben

I don't know where A2 comes into play but to fill A1:J1 down to A20:A29
enter this in A20 and copy down to A29

=INDEX($1:$1,ROWS($1:1))


Gord Dibben MS Excel MVP
 

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