cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

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