Hi ,
I have some JMP Output Data Tables open and I would like to close them a couple of them.
Can this be done in JMP scripts?
Regards,Aman
Go to Solution
// Open two tables
dt1 = open("$sample_data\Big Class.jmp");
dt2 = open("$sample_data\Bands Data.jmp");
wait(1); // Wait for a second to see the opened tables
// Close the tables without saving them
close(dt1, nosave);
close(dt2, nosave);
View solution in original post