And
And using Select Where
Summary: Selects rows in a data table based on specific conditions, filtering out records with weight less than 120 and height less than 60.
Code:
dt = Open("data_table.jmp");
dt << Select Where( And( :weight >= 120, :height >= 60 ) );
Code Explanation:
- Open data table;
- Select rows where weight ‚â• 120.
- Select rows where height ‚â• 60.