There are a couple of issues.
- You are using double "||" instead of single "|" for the OR in your Select Where
- In your Subset, using Selected Rows( 1 ) indicates to JMP to only subset the selected rows
I also changed your column reference to Instrument Type. There is no need to have it in quotes. It does not contain any special characters that might confuse JMP, so therefore the quotes are not necessary.
dt << Select where(
:Timepoint == "cell value 1" | :Timepoint == "cell value 2" | :Timpeoint ==
"cell value 3"
);
dt_subset = dt << Subset(
Columns( :Instrument Type, :Donor ID, :Timepoint, :Instrument Channel, :Run date ),
selected rows( 1 )
);
Jim