Drag down formula and change ROW references instead of COLUMNS
Asked Answered
S

1

16

In excel I have sheet1 contains total every month. (please see image below)

enter image description here

Then in my sheet2 it will display horizontally. (please see image below)

enter image description here

I used the formula =Sheet1!$B$1, my problem is when i drag it to the right it increments the column letters. How should i make it increment the row only and the column letter is constant in column "B".

Any ideas and alternatives is much appreciated.

Thank you in advance!

Strobotron answered 7/3, 2014 at 5:46 Comment(1)
the title makes no sense. If you drag a formula up/down it will change row references. It is when you drag a formula across,then it will change columns.. It looks like you want to drag your formula to the right and change rowsHomicidal
E
18

You can use OFFSET:

=OFFSET(Sheet1!$B$1,COLUMN()-2,0)

Or TRANSPOSE: Select B2:M2 and then enter

=TRANSPOSE(Sheet1!$B$1:B12)

as an array formula (using Ctrl+Shift+Enter)

Electrocorticogram answered 7/3, 2014 at 5:55 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.