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
Username:
Password:
Save Password
Forgot your Password? | Admin Options

 All Forums
 Origin Forum
 Origin Forum
 Arrange order of columns
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic Lock Topic Edit Topic Delete Topic New Topic Reply to Topic

saligerm987

Germany
Posts

Posted - 05/23/2005 :  05:29:05 AM  Show Profile  Edit Topic  Reply with Quote  View user's IP address  Delete Topic
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

Mike Buess

USA
3037 Posts

Posted - 05/23/2005 :  07:24:30 AM  Show Profile  Edit Reply  Reply with Quote  View user's IP address  Delete Reply
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
Go to Top of Page

saligerm987

Germany
Posts

Posted - 05/23/2005 :  08:21:49 AM  Show Profile  Edit Reply  Reply with Quote  View user's IP address  Delete Reply
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

Go to Top of Page

saligerm987

Germany
Posts

Posted - 05/23/2005 :  08:21:51 AM  Show Profile  Edit Reply  Reply with Quote  View user's IP address  Delete Reply
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

Go to Top of Page
  Previous Topic Topic Next Topic Lock Topic Edit Topic Delete Topic New Topic Reply to Topic
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000