After receiving so much great support, I thought it was about time I returned this favour. Below you'll find a little program that might make it easier to filter data tables. Hard encoding by "entry" is one way to filter entries; this is tedious and prone to typos. An alternative is to filter entries by their "position" in a filter list. This approach just assumes that the sequence of fields in the filter list does not change. To make sure, just check the JMP log. As a quality check, it will tell you which entries were excluded .
Good luck
Newbie2Jumpie
names default to here( 1 );
// Open a sample data table
dt = Open( "$SAMPLE_DATA/big class.jmp" );
/* Get entries/levels from Column NAME and store them in NAME_LIST */
NAME_LIST = dt:NAME << get values ;
NAME_LIST ;
/* Remove selected entries ("levels") on given position in list = JMP table */
remove from(NAME_LIST, {1,3,5} ); /* {removes: "KATIE", "JANE", "LILLIE" */
/* Cleans data by removing rows using level list */
dt << Select where(contains(NAME_LIST, :NAME)) ;
dt_2 = dt << subset(selected rows(1), all columns);
/* Results in a subset without the levels "KATIE", "JANE", "LILLIE" */
close (dt, nosave) ;