cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
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);