cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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?

Recommended Articles