Hello everyone,
I am looking to see a prompt to select or ask the user to enter the text or product etc, and pull the query only related to that data
Is that possible? If yes, then how?
Please guide me.
Thanks in advance
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "Col List Box Example 1", << modal,
clb = Col List Box( all, width( 250 ), maxSelected( 1 ),
selectedCol = clb << get selected )
);
Graph Builder(
Size( 525, 448 ),
Show Control Panel( 0 ),
Variables( X( eval(selectedCol) ), Y( :height ) ),
Elements( Box Plot( X, Y, Legend( 4 ) ) )
);