|
|
Question : excel transpose autofill question
|
|
Hi. suppose I have an excel worksheet with the following values: (since i don't know how to draw each excel cell, the cell values are separated by commas).
1, 2 3, 4
i.e. cell A1 has the value 1, cell B1 has the value 2, A2 has 3 etc.
Now let's say cell D1 has the value "=A1" and then you autofill from cell D1 to the RIGHT. is there a way to have cell E1 autofill with a link to cell A2?) i.e. as you autofill along a ROW, can your autofill capture values in a COLUMN?
Thanks. I hope that made sense.
|
Answer : excel transpose autofill question
|
|
Place this in D1 and copy to right.
=OFFSET($A1,COLUMN(A1)-1,0,1,1)
|
|
|
|
|