Here is a solution. The
Wait( 0 );
allows for the Big Class data table to complete opening before the
dt << Go To row( N Rows( dt ) );
is executed
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Wait( 0 );
dt << Go To row( N Rows( dt ) );
Jim