T O P I C R E V I E W |
Selinger78 |
Posted - 01/21/2010 : 11:31:01 AM After years I need to use origin (V 6.0) again. I want to use the worksheet script and have two questions:
1. Is there a simple command to delete empty lines in a specified worksheet (e.g. Data1)?
2. Is the an easy way to change the column names in a specified worksheet (e.g. Data1)?
Best regards, Selinger78
|
3 L A T E S T R E P L I E S (Newest First) |
greg |
Posted - 02/18/2010 : 3:26:08 PM While it might be possible to to come up with a script using the mark command which does what you ask, I recommend upgrading to the latest Origin because there is a rather nasty bug in 6.1 where the mark command sometimes deletes columns. |
Selinger78 |
Posted - 01/22/2010 : 05:32:14 AM Thanks for the answer! An addition to my question #1:
Is there a possibility to delete ALL empty rows of a certain worksheet?
Regards, Selinger78 |
larry_lan |
Posted - 01/21/2010 : 8:51:42 PM 1. mark -d command. Such as, deleting row 3 in Data1"
mark -d data1_a -b 3 -e 3
2. worksheet -n colRef newName. For example, rename the 2nd column to "Hello":
worksheet -n 2 Hello;
|