cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
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?