ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Inverting worksheet (not graph) axises (https://www.excelbanter.com/excel-discussion-misc-queries/97097-inverting-worksheet-not-graph-axises.html)

RiotLoadTime

Inverting worksheet (not graph) axises
 

I have an 256 column X 200 row worksheet filled with patient data.
Right now, each row is a different patient number, and the columns are
the various types of data that I've recorded for those patients. For
data-input reasons, I'd like to switch it so that the different data
types are on the rows and each patient gets his/her own column. Is
there an easy way to do this?

Thanks,
RiotLoadTime


--
RiotLoadTime
------------------------------------------------------------------------
RiotLoadTime's Profile: http://www.excelforum.com/member.php...o&userid=35956
View this thread: http://www.excelforum.com/showthread...hreadid=557462


Jennifer

Inverting worksheet (not graph) axises
 
Use a Pivot table - the wizard is very easy to use and will let you move your
data around. You find it under "data" menu...

"RiotLoadTime" wrote:


I have an 256 column X 200 row worksheet filled with patient data.
Right now, each row is a different patient number, and the columns are
the various types of data that I've recorded for those patients. For
data-input reasons, I'd like to switch it so that the different data
types are on the rows and each patient gets his/her own column. Is
there an easy way to do this?

Thanks,
RiotLoadTime


--
RiotLoadTime
------------------------------------------------------------------------
RiotLoadTime's Profile: http://www.excelforum.com/member.php...o&userid=35956
View this thread: http://www.excelforum.com/showthread...hreadid=557462



Gord Dibben

Inverting worksheet (not graph) axises
 
Try Copying the range then EditPaste SpecialTranspose.

Note: you cannot overlap any of the existing rows and columns.

I would Paste to A1 in a new worksheet.


Gord Dibben MS Excel MVP

On Fri, 30 Jun 2006 14:44:50 -0500, RiotLoadTime
wrote:


I have an 256 column X 200 row worksheet filled with patient data.
Right now, each row is a different patient number, and the columns are
the various types of data that I've recorded for those patients. For
data-input reasons, I'd like to switch it so that the different data
types are on the rows and each patient gets his/her own column. Is
there an easy way to do this?

Thanks,
RiotLoadTime



Ragdyer

Inverting worksheet (not graph) axises
 
Do you realize that would mean that you'd only have room for 56 more
patients?

You could select all your data, A1 to IV200,
Right click in the selection and choose "Copy",
Then right click in the cell that would be the top left cell of your *new*
location,
Choose "Paste Special",
Then click on "Transpose",
Then <OK.

NOW ... there can be *no* overlap of the old and new locations.
This means you would start at *least* in A201,
OR
You could simply right click in A1 of a *new* sheet, and transpose there.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"RiotLoadTime"
wrote in message
news:RiotLoadTime.2a8d90_1151696703.0021@excelforu m-nospam.com...

I have an 256 column X 200 row worksheet filled with patient data.
Right now, each row is a different patient number, and the columns are
the various types of data that I've recorded for those patients. For
data-input reasons, I'd like to switch it so that the different data
types are on the rows and each patient gets his/her own column. Is
there an easy way to do this?

Thanks,
RiotLoadTime


--
RiotLoadTime
------------------------------------------------------------------------
RiotLoadTime's Profile:
http://www.excelforum.com/member.php...o&userid=35956
View this thread: http://www.excelforum.com/showthread...hreadid=557462



Nikki

Inverting worksheet (not graph) axises
 
Hi,

I am needing to do a similar thing to what this topic is about. I have
tried the transposing option and that works fine for the static data. I am
needing people to update the data in the original sheet. The reason I am
needing to transpose the data is then to mailmerge it using the original rows
(transposed) to columns as the data record. Is there a way to transpose the
data with it linking back to the original data or is there an easier way to
get it to merge properly?

Nikki

"Ragdyer" wrote:

Do you realize that would mean that you'd only have room for 56 more
patients?

You could select all your data, A1 to IV200,
Right click in the selection and choose "Copy",
Then right click in the cell that would be the top left cell of your *new*
location,
Choose "Paste Special",
Then click on "Transpose",
Then <OK.

NOW ... there can be *no* overlap of the old and new locations.
This means you would start at *least* in A201,
OR
You could simply right click in A1 of a *new* sheet, and transpose there.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"RiotLoadTime"
wrote in message
news:RiotLoadTime.2a8d90_1151696703.0021@excelforu m-nospam.com...

I have an 256 column X 200 row worksheet filled with patient data.
Right now, each row is a different patient number, and the columns are
the various types of data that I've recorded for those patients. For
data-input reasons, I'd like to switch it so that the different data
types are on the rows and each patient gets his/her own column. Is
there an easy way to do this?

Thanks,
RiotLoadTime


--
RiotLoadTime
------------------------------------------------------------------------
RiotLoadTime's Profile:
http://www.excelforum.com/member.php...o&userid=35956
View this thread: http://www.excelforum.com/showthread...hreadid=557462




RagDyeR

Inverting worksheet (not graph) axises
 
This procedure takes *1* column and transposes to *1* row.

I'm sure that you want your *single* data column to transpose into 3 or 4 or
5 field columns, and numerous item rows ... right ?

If I misunderstood what you're looking for, then this type of formula will
take the data from Column.A on Sheet1, and transpose it to a single row on
another sheet,
AND create (maintain) links to the original data.

=INDEX(Sheet1!$A:$A,COLUMNS($A:A))

Copy across as needed.

Don't forget that at *present*, this will only work for 256 rows, since you
only have that number of columns.
--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"Nikki" wrote in message
...
Hi,

I am needing to do a similar thing to what this topic is about. I have
tried the transposing option and that works fine for the static data. I am
needing people to update the data in the original sheet. The reason I am
needing to transpose the data is then to mailmerge it using the original
rows
(transposed) to columns as the data record. Is there a way to transpose the
data with it linking back to the original data or is there an easier way to
get it to merge properly?

Nikki

"Ragdyer" wrote:

Do you realize that would mean that you'd only have room for 56 more
patients?

You could select all your data, A1 to IV200,
Right click in the selection and choose "Copy",
Then right click in the cell that would be the top left cell of your *new*
location,
Choose "Paste Special",
Then click on "Transpose",
Then <OK.

NOW ... there can be *no* overlap of the old and new locations.
This means you would start at *least* in A201,
OR
You could simply right click in A1 of a *new* sheet, and transpose there.
--
HTH,

RD

--------------------------------------------------------------------------

-
Please keep all correspondence within the NewsGroup, so all may benefit !
--------------------------------------------------------------------------

-
"RiotLoadTime"
wrote in message
news:RiotLoadTime.2a8d90_1151696703.0021@excelforu m-nospam.com...

I have an 256 column X 200 row worksheet filled with patient data.
Right now, each row is a different patient number, and the columns are
the various types of data that I've recorded for those patients. For
data-input reasons, I'd like to switch it so that the different data
types are on the rows and each patient gets his/her own column. Is
there an easy way to do this?

Thanks,
RiotLoadTime


--
RiotLoadTime
------------------------------------------------------------------------
RiotLoadTime's Profile:
http://www.excelforum.com/member.php...o&userid=35956
View this thread:

http://www.excelforum.com/showthread...hreadid=557462







All times are GMT +1. The time now is 06:56 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com