Deleting rows in JSL
Hi,this is a very basic question that has been answered many times, but I can't get it to work....
//Define the column name here first
Col = "mycolumn.xyz";
dt = current data table ();
//Create new table dt2, copy first table dt, sort it by two different columns
dt2 = Data Table( dt ) << Sort(
By( :WAFER, Column(dt, Col) ),
Order( Ascending, Ascending )
);
ColValues = {};
ColValues = Column(dt2, C
tallman