Delete rows based upon condition
Hi, I would like to use for loop to delete my columns. Below is an example but I have more columsn.Also, how you treat columns with white space in between like "color size".Thanks.
dt = Open( "$SAMPLE_DATA\Big Class.jmp" );
column_list = Words( "heigth", "weight" );
For( i = N Items( column_list ), i > 0, i--,
dt << Select Where( :column_list[i] > 67 );
dt << delete rows;
);