For the latest version of JMP Help, visit JMP.com/help.


Scripting Guide > Data Tables > Work with Rows > Hide, Exclude, and Label Rows
Publication date: 06/21/2023

Hide, Exclude, and Label Rows

Use the Hide, Exclude, and Label messages to hide, exclude, and label rows. These messages are toggles, meaning that to turn the messages on you send them once, and to turn them off you send the message a second time. They also accept Boolean arguments to explicitly turn them off and on.

For example, to hide all rows in Big Class where age is greater than 13, you could do the following:

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Select Where( :age > 13 );
dt << Hide( 1 );

Messages to the same object can be stacked together in a single statement, so you could simplify the preceding script.

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Select Where( :age > 13 ) << Hide( 1 );

Note: For more information about hiding, excluding, and labeling rows using row state functions, see Row States.

Want more information? Have questions? Get answers in the JMP User Community (community.jmp.com).