It is an easy option of using the Selection Tool "+" and the selecting and dragging the table to the bottom of the output;
![txnelson_0-1628790482178.png txnelson_0-1628790482178.png](https://community.jmp.com/t5/image/serverpage/image-id/34975iAE70581F18B17C06/image-size/medium?v=v2&px=400)
However, I have not been able to delete the original table.
The following JSL does move the table and delete the old table
![txnelson_1-1628790596288.png txnelson_1-1628790596288.png](https://community.jmp.com/t5/image/serverpage/image-id/34976iCBE3611470725504/image-size/medium?v=v2&px=400)
Names Default To Here( 1 );
x = Current Report();
x[Outline Box( 1 )] << append( x[Outline Box( 2 )] );
x[Outline Box( 2 )] << delete;
Jim