Note: You must be registered in order to post a reply. To register, click here. Registration is FREE!
T O P I C R E V I E W
bjlee707
Posted - 06/29/2004 : 06:22:04 AM I am a beginner to use this LabTalk I want to delete only the from 1 to 21 in column A in data1 worksheet. I tried this with mark -d data1_A -b 1 -e 21;
But it deleted rows from 1 to 21 in all column. How can I delete the rows in one column?
1 L A T E S T R E P L I E S (Newest First)
Mike Buess
Posted - 06/29/2004 : 10:59:29 AM Here's one method...
i1=1; i2=21; get Data1_A -e npt; // get current # rows in Data1_A i2++; npt-=i2-i1; // # rows after deletion copy -b i2 Data1_A Data1_A -b i1 -e npt; set Data1_A -e npt;