I took this a step further to append each jrn file as a tab in a consolidated journal file.
Shown below is modified code that works in Jmp 14.3.0 but not in Jmp 12.2.0.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
j1 = New Window( "Journal_1",
<<journal,
dt << bivariate( x( :weight ), y( :height ) )
);
Current Journal() << save journal( "$TEMP\Existing.jrn" );
Current Journal() << close window();
//Open closed journal
nw_existing = Open( "$TEMP\Existing.jrn" );
//Create New journal
nw2 = New Window( "Journal_2", <<journal, dt << oneway( x( :sex ), y( :height ) ) );
Current Journal() << save journal( "$TEMP\New.jrn" );
//create new window
nw = New Window( "Final", tbox = Tab Box() );
//add New jrn first, followed by Existing
tbox << Append ("New", vlb = Panel Box());
vlb << Append( nw2 );
tbox << Append ("Existing", vlb = Panel Box());
vlb << Append( nw_existing );
Output from Jmp 12.2.0 included below. New tab is populated but Existing tab does not have the plot.
I am limited to usage of Jmp 12.2.0 so would like to figure out a way to get this working. Appreciate help and pointers.
Thanks!