The Origin Forum
File Exchange
Try Origin for Free
The Origin Forum
Home | Profile | Register | Active Topics | Members | Search | FAQ | Send File to Tech support
 All Forums
 Origin Forum
 Origin Forum
 convert or transpose a single column to a row...

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Anti-Spam Code:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkUpload FileInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
kencedric Posted - 10/27/2011 : 12:01:36 PM
Hey
i am using Labtalk script for the first time and i want to convert(transpose) a column to a row.
May be someone can help me.
exemple
Mo 1 8 8 9 9
Di 2 1 1 2 5
Mi 3 2 5 6 8
Do 4 2 0 6 0
Fr 5 3 2 4 8


to

Mo Di Mi Do Fr
1 8 8 9 9
2 1 1 2 5
3 2 5 6 8
4 2 0 6 0
5 3 2 4 8


As u can see, only Mo,Di, Mi, Do and Fr have to move, to be placed in a row...
Thanks for the Help
Cedric
4   L A T E S T    R E P L I E S    (Newest First)
fatihk29 Posted - 10/04/2012 : 06:30:39 AM
Hey guys, also i want to transpose a column to a row, but which is the column taken from another sheet. So, i ll take a column from another sheet and paste it to the active sheet as transposed. for example;

t c (p) p*
7 14 12 12 23 14
8 16 23
6 12 14

*(p) is taken from another sheet, p* transposed of (p)
is there a script for this process. I would appreciate if someone can help me ?
kencedric Posted - 10/31/2011 : 09:19:33 AM
Thx Guys
@Drbobshepherd: thanks for ur Help,it works perfectly.
Drbobshepherd Posted - 10/27/2011 : 3:26:35 PM
Is it your intent to only transpose Col 1? If so, you can still use wtranspose, but it is not as simple. Try this:

wtranspose exchange:=1 type:=long col:=1; // Transpose labels and data
del col(A); // Delete column A because it is empty.
wtranspose; // Transpose numeric data back to original order.

This has the added effect of separating your text from your numeric data, which may be useful if you want to refer to your datasets by your text labels.
Hideo Fujii Posted - 10/27/2011 : 1:42:17 PM
Hi Cedric,


If you want to transpose a worksheet by a script. you can use a single command (actually an x-function):

    wtranspose

--Hideo

The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000