Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If I transpose data (horizontal row to vertical column)from one sheet to
another with the "copy" and "Paste Special" command using "transpose", the programme only gives the values. I need to keep the link to the original sheet to ensure that if any data is changed in the original sheet (row) that it changes in the column on the new sheet. I have tried the "Transpose" @-function unsucesfully!! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Say we have data in Sheet1, row 1 and we want that to appear in Sheet2 column
1, but keep it linked. In Sheet2 A1, enter: =INDIRECT("Sheet1!"&CHAR(64+ROW())&"1") and copy down -- Gary''s Student - gsnu200836 "Maxim" wrote: If I transpose data (horizontal row to vertical column)from one sheet to another with the "copy" and "Paste Special" command using "transpose", the programme only gives the values. I need to keep the link to the original sheet to ensure that if any data is changed in the original sheet (row) that it changes in the column on the new sheet. I have tried the "Transpose" @-function unsucesfully!! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use this instead:
=INDIRECT("Sheet1!"&ADDRESS(1,ROW())) the first posted equation only works for 26 items. -- Gary''s Student - gsnu200836 "Maxim" wrote: If I transpose data (horizontal row to vertical column)from one sheet to another with the "copy" and "Paste Special" command using "transpose", the programme only gives the values. I need to keep the link to the original sheet to ensure that if any data is changed in the original sheet (row) that it changes in the column on the new sheet. I have tried the "Transpose" @-function unsucesfully!! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Fri, 6 Mar 2009 01:29:01 -0800, Maxim
wrote: If I transpose data (horizontal row to vertical column)from one sheet to another with the "copy" and "Paste Special" command using "transpose", the programme only gives the values. I need to keep the link to the original sheet to ensure that if any data is changed in the original sheet (row) that it changes in the column on the new sheet. I have tried the "Transpose" @-function unsucesfully!! You have in sheet1!F1:H1 that you wish to appear on some other sheet in A1:A3. You could use a formula of the type: =IF(ROWS($1:1)COLUMNS(Sheet1!$F$1:$H$1),"",INDEX( Sheet1!$F$1:$H$1,1,ROWS($1:1))) in A1 and fill down as far as required. It will return blanks if you go too far. Adjust your references to your ROW range as required. --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Transpose Data with fixed first column | Excel Discussion (Misc queries) | |||
link data in a column to one cell | Excel Discussion (Misc queries) | |||
Transpose Data from a column to several rows | Excel Worksheet Functions | |||
Link excel and word in mail merge without losing your data source? | Excel Discussion (Misc queries) | |||
I have a column of data and I'd like to transpose it to go across. | Excel Discussion (Misc queries) |