Sequentially exclude rows?
Hi. Is there a command to exclude rows that doesn't also unexclude previously excluded rows? In my script, I'd like to exclude rows in a table that already may have some of these rows excluded. The problem is that if I use Exclude, it may actually Unexclude previously excluded rows. For example:Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt << Clear Row States;
r = dt <<...