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
alex
Level I

subsequent row selects impact previously created tables.

Hi again.

I'm trying to create a dashboard by creating some tables and distributions within one window. Something like the below.
What I find is that the tables are created with the row initial selection...
but then when the the next row selection is made, the tables are updated.
(with the wait, I can see the table..and then after 15 secs I see it change)

An suggestions?

Thanks,
Alex


New Window ( MyDashBoard,
---a couple of tables showing the last 6 months
dt << clear row states;
dt << select where(MonthFinish2 <= 201010) << exclude << clear select;
Tablulate ( blah blah);
Tablulate ( blah blah);
---Add a wait for debugging
wait(15);
---a bunch of distributions for the current month
dt << clear row states;
dt << select where(MonthFinish2 != 201104) << exclude << clear select;
Distribution( blah blah)
); ----close new window
1 REPLY 1
alex
Level I

Re: subsequent row selects impact previously created tables.

Answering my own question:

i needed to add:
automatic recalc(0),

for each Tabulate procedure.

which sets:
Tabulate->Script->Automatic Recalc

from page 190 of the JMP Scripting Guide.