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
 Arrange order of columns

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
saligerm987 Posted - 05/23/2005 : 05:29:05 AM
Hello,

I like to rearrange the order of my colums in my data sheet. For exmaple I want to move the third column to the 5th position.....
How can I do this?

Thanx
Martin
3   L A T E S T    R E P L I E S    (Newest First)
saligerm987 Posted - 05/23/2005 : 08:21:51 AM
Thank you very much, Mike.

Martin


quote:

Hi Martin,

Manually...
1. Open the Column toolbar (View > Toolbars > Column).
2. Select third column.
3. Click the Move Right button twice.

LabTalk...
wo -i 5; // insert new col after col 5;
copy col(3) col(6); // copy col 3 to new col
%A=wks.col3.name$; // get name of col 3
del col(3); // del col 3
wks.col5.name$=%A; // rename col 5

Mike Buess
Origin WebRing Member

saligerm987 Posted - 05/23/2005 : 08:21:49 AM
Thank you very much, Mike.

Martin


quote:

Hi Martin,

Manually...
1. Open the Column toolbar (View > Toolbars > Column).
2. Select third column.
3. Click the Move Right button twice.

LabTalk...
wo -i 5; // insert new col after col 5;
copy col(3) col(6); // copy col 3 to new col
%A=wks.col3.name$; // get name of col 3
del col(3); // del col 3
wks.col5.name$=%A; // rename col 5

Mike Buess
Origin WebRing Member

Mike Buess Posted - 05/23/2005 : 07:24:30 AM
Hi Martin,

Manually...
1. Open the Column toolbar (View > Toolbars > Column).
2. Select third column.
3. Click the Move Right button twice.

LabTalk...
wo -i 5; // insert new col after col 5;
copy col(3) col(6); // copy col 3 to new col
%A=wks.col3.name$; // get name of col 3
del col(3); // del col 3
wks.col5.name$=%A; // rename col 5

Mike Buess
Origin WebRing Member

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