Hi,
I am not sure if this command is available in JMP 12, but in more recent version, you can use the following:
Names Default To Here( 1 );
dt1 = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt2 = Open( "$SAMPLE_DATA/Abrasion.jmp" );
Create Excel Workbook(
"$TEMP/MyWorkbook.xlsx",
{dt1, dt2},
{"Big", "Abrasive"}
);
With the first List being the data tables you need to aggregate and the second list being the names of the worksheets.
Let us know if this helps?
Best,
TS
Thierry R. Sornasse