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 |