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
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.