Extend Select Where
Can we get this fixed in the Scripting Guide?//Scripting Guide page 336dt = Open( "$SAMPLE_DATA\Big Class.jmp" );dt << Select Where( age < 15 & sex == "F" );//ordt << Select Where( age == 14 );dt << Extend Select Where( sex == "F" ); //does nothing//Not in guide, but below workswait(10);dt << Select Where( sex == "F", Current Selection ("extend")); //extends selection
