Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
I have a series of data in rows (eg. in cells B2, C2, D2, E2...). I want to
pick these values up and use them else where in a table arranged in columns. Therefore the formula in the first row (cell B2) will be =Sheet1!B2, the second row (cell B3) will be =Sheet1!C2, the third row (cell B4) will be =Sheet1!D2 etc. If I copy or drag the formula down the rows I end up with the incorrect references (the row value increments, but not the column value) as you would expect. Is there any way to drag down or copy the formulas to pick up the data as I have tried to describe above? - or do I have to enter the formula for each cell? Thanks, Andy |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
one way:
=INDEX(Sheet1!$2:$2,ROW()+1) In article , Andy wrote: I have a series of data in rows (eg. in cells B2, C2, D2, E2...). I want to pick these values up and use them else where in a table arranged in columns. Therefore the formula in the first row (cell B2) will be =Sheet1!B2, the second row (cell B3) will be =Sheet1!C2, the third row (cell B4) will be =Sheet1!D2 etc. If I copy or drag the formula down the rows I end up with the incorrect references (the row value increments, but not the column value) as you would expect. Is there any way to drag down or copy the formulas to pick up the data as I have tried to describe above? - or do I have to enter the formula for each cell? Thanks, Andy |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Missed that you were starting in B2 rather than B1:
=INDEX(Sheet1!$2:$2,ROW()) In article , JE McGimpsey wrote: one way: =INDEX(Sheet1!$2:$2,ROW()+1) In article , Andy wrote: I have a series of data in rows (eg. in cells B2, C2, D2, E2...). I want to pick these values up and use them else where in a table arranged in columns. Therefore the formula in the first row (cell B2) will be =Sheet1!B2, the second row (cell B3) will be =Sheet1!C2, the third row (cell B4) will be =Sheet1!D2 etc. If I copy or drag the formula down the rows I end up with the incorrect references (the row value increments, but not the column value) as you would expect. Is there any way to drag down or copy the formulas to pick up the data as I have tried to describe above? - or do I have to enter the formula for each cell? Thanks, Andy |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Start *anywhere* with this:
=INDEX(Sheet1!$2:$2, ROWS($1:2)) -- HTH, RD ================================================== === Please keep all correspondence within the Group, so all may benefit! ================================================== === "JE McGimpsey" wrote in message ... Missed that you were starting in B2 rather than B1: =INDEX(Sheet1!$2:$2,ROW()) In article , JE McGimpsey wrote: one way: =INDEX(Sheet1!$2:$2,ROW()+1) In article , Andy wrote: I have a series of data in rows (eg. in cells B2, C2, D2, E2...). I want to pick these values up and use them else where in a table arranged in columns. Therefore the formula in the first row (cell B2) will be =Sheet1!B2, the second row (cell B3) will be =Sheet1!C2, the third row (cell B4) will be =Sheet1!D2 etc. If I copy or drag the formula down the rows I end up with the incorrect references (the row value increments, but not the column value) as you would expect. Is there any way to drag down or copy the formulas to pick up the data as I have tried to describe above? - or do I have to enter the formula for each cell? Thanks, Andy |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can I rotate data in Excel table (rows to columns, and vv)? | Excel Discussion (Misc queries) | |||
Make pivot table with multiple "data" fields in columns not rows? | Excel Discussion (Misc queries) | |||
how to interchange rows to columns & columns to rows in a table | Excel Discussion (Misc queries) | |||
Change data to appear in rows instead of columns (reverse a table. | Excel Discussion (Misc queries) | |||
How to get pivot table data columns instead of rows | Excel Discussion (Misc queries) |