Hi,
I'm trying to get rows with more than one condition as so:
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
r = dt << Get Rows Where( :sex == "F", :name == "ROBERT", :name != "MARK" );
Show( r );
But what I'm getting is only rows where : sex == "F",
Is there any way to get all rows that are :name == "ROBERT", and also rows that are :name != "MARK" i.e. the :name rows where it is not "MARK"