cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
b55019
Level II

How to close multiple Data tables in JMP 11 script?

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

1 ACCEPTED SOLUTION

Accepted Solutions
pmroz
Super User

Re: How to close multiple Data tables in JMP 11 script?

// 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

1 REPLY 1
pmroz
Super User

Re: How to close multiple Data tables in JMP 11 script?

// 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);