maybe have your VBA script run a JSL script like this?
Names Default To Here( 1 );
dt = Open(
"$SAMPLE_DATA/Nonlinear Examples/US Population.jmp"
);
//dt<<set name("Some Data");
obj = Nonlinear( Y( :pop ), X( :Name( "X-formula" ) ) );
obj << Newton;
obj << Finish;
obj << Prediction Formula;
obj << Close Window;
Create Excel Workbook(
"/User/Examples/DATA FROM JMP.xlsx",
{"Some Data"},
{"Data From JMP Non-Linear Fit"}
);
This saves a JMP table as an Excel Workbook and gives you the flexibility to write a tab name as well as the file name.
JMP Systems Engineer, Health and Life Sciences (Pharma)