cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Get the free JMP Student Edition for qualified students and instructors at degree granting institutions.
Choose Language Hide Translation Bar
View Original Published Thread

Syndicated - OutboundJMP Note 575404 - How to select rows based upon multiple conditions using a JMP® script

Overview

The following examples demonstrate how you can use the logical AND (&) and OR (|) operators with the Select Where message to select rows that meet multiple conditions.

Instructions

In a JMP® session, click the File menu and select New ► Script. Copy the below script and paste it into the script window. To run the sample script, click the Edit menu and select Run Script.

 

/* Open a sample data table */ 
dt = Open( "$SAMPLE_DATA\Big Class.jmp" ); 

/* Select rows where students are over 13, who are also less than 65 inches tall */ 
dt << Select Where( :age > 13 & :height < 65 );

Wait( 2 ); // For demonstration purposes 
dt << Clear Select; // For demonstration purposes 

/* Select rows where students are either 12 or 14 years old */ 
dt << Select Where( :age == 12 | :age == 14 ); 

 

Additional Documentation

More information about the JMP Scripting Language can be found in the Scripting Guide available in the online help.

 

[Previously JMP Note 49517]

Details
Operating System
macOS Windows
Products JMP JMP Pro