The argument for naming the table is Output Table().
dt=open("$SAMPLE_DATA\Big Class.jmp");
dt << Split(
Split By( :sex ),
Split( :height ),
Group( :name ),
Output Table( "my split table" ),
Remaining Columns( Drop All ),
Sort by Column Property
);
There are three ways to learn this.
1. Perform the Split interactively, using the option in the Split dialog to name the output table and then examine the Source script in the resulting table.
![2022-09-30_16-42-32.637.png 2022-09-30_16-42-32.637.png](https://community.jmp.com/t5/image/serverpage/image-id/45944i5309F3903A6A9664/image-size/medium?v=v2&px=400)
2. If you have JMP 16 or greater the Enhanced Log window will show you the script.
![2022-09-30_16-46-49.183.png 2022-09-30_16-46-49.183.png](https://community.jmp.com/t5/image/serverpage/image-id/45945iFDFD5E42FEE22C22/image-size/medium?v=v2&px=400)
3. The Help->Scripting Index entry for Split shows the syntax.
![2022-09-30_16-49-21.526.png 2022-09-30_16-49-21.526.png](https://community.jmp.com/t5/image/serverpage/image-id/45946iB6C4787143B66488/image-size/medium?v=v2&px=400)
-Jeff