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.
Choose Language Hide Translation Bar
pniel
Level I

scene parallel to data tables calculations

Hello.
I am trying to make a scene in order to hide the calculations that I do in a data table
(It takes 1 minute)
Unfortunately I can’t hide the data table, does somebody knows how to run a scene parallel to massive calculations in data tables, thanks a lot.

pini
2 REPLIES 2
pmroz
Super User

Re: scene parallel to data tables calculations

You can minimize the data table:

dt << minimize window(1);

and then restore it with

dt << minimize window(0);

Alternatively you can make the table invisible with

dt << show window(0);

and then make it magically reappear with

dt << show window(1);

I've had a spot of trouble with show window(0) when my code doing calculations on dt hits a bug and the "show window(1)" doesn't get reexecuted.
pniel
Level I

Re: scene parallel to data tables calculations

hi, tanks but dt<Is there another way?