cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
waltp
Level I

Dynamically adding a Table Box to an Outline Box

Hi,

 

I would like to add Table Boxes to an Outline box, but do this dynamically as the number and content of the Table Box contents change.  I tried the following script as a example but Table Boxes don't even appear plus there is an error message about the hb reference in the For loop that I don't understand.  Any sugestions?

 

Thanks,

 

Walt Paczkowski

================================================================

 

Names Default To Here( 1 );
tbLst = { Index( 1, 5 ), Index( 6, 10) };
//
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dtM = dt << Subset( Output Table( "x" ), Columns( :sex, :height ) );
//
for( i = 1, i <= 2, i++,
	dtM << Clear Select;
	dtM << Select Rows( Eval( tbLst[ i ] ) );
	//
	hb << Append( ( dtM << Get As Report ) );
);
//
New Window( "test", Outline Box( "X", hb = H List Box( ) ) );

 

1 ACCEPTED SOLUTION

Accepted Solutions
ian_jmp
Staff

Re: Dynamically adding a Table Box to an Outline Box

I think you are close. Is that what you want?

Names Default To Here( 1 );
tbLst = { Index( 1, 5 ), Index( 6, 10) };
//
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dtM = dt << Subset( Output Table( "x" ), Columns( :sex, :height ) );
//
hb = H List Box( );
for( i = 1, i <= 2, i++,
	dtM << Clear Select;
	dtM << Select Rows( Eval( tbLst[ i ] ) );
	//
	hb << Append( ( dtM << Get As Report ) );
);
//
New Window( "test", Outline Box( "X", hb ) );

View solution in original post

2 REPLIES 2
ian_jmp
Staff

Re: Dynamically adding a Table Box to an Outline Box

I think you are close. Is that what you want?

Names Default To Here( 1 );
tbLst = { Index( 1, 5 ), Index( 6, 10) };
//
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dtM = dt << Subset( Output Table( "x" ), Columns( :sex, :height ) );
//
hb = H List Box( );
for( i = 1, i <= 2, i++,
	dtM << Clear Select;
	dtM << Select Rows( Eval( tbLst[ i ] ) );
	//
	hb << Append( ( dtM << Get As Report ) );
);
//
New Window( "test", Outline Box( "X", hb ) );
waltp
Level I

Re: Dynamically adding a Table Box to an Outline Box

That's exactly it!! Thanks for the help.

Walt